mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
6 lines
183 B
Ruby
6 lines
183 B
Ruby
class OrganizationsController < ApplicationController
|
|
|
|
def users
|
|
@org_users = OrganizationUser.where(organization: @current_user.organization).includes(:user)
|
|
end
|
|
end
|