mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-14 12:38:39 +00:00
7 lines
218 B
Ruby
7 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OrganizationsController < ApplicationController
|
|
def users
|
|
@org_users = OrganizationUser.not_archived.where(organization: @current_user.organization).includes(:user)
|
|
end
|
|
end
|