ToolJet/app/controllers/organizations_controller.rb
2021-04-12 10:20:22 +05:30

6 lines
167 B
Ruby

class OrganizationsController < ApplicationController
def users
@org_users = OrganizationUser.where(organization: @current_user.organization)
end
end