mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-08 09:41:16 +00:00
6 lines
167 B
Ruby
6 lines
167 B
Ruby
class OrganizationsController < ApplicationController
|
|
|
|
def users
|
|
@org_users = OrganizationUser.where(organization: @current_user.organization)
|
|
end
|
|
end
|