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