mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-13 03:58:59 +00:00
* Improves ruby code in app/models/app_user.rb based on suggestions from Rubocop * Rubocop fixes for more models * Rubocop fixes for controllers
7 lines
205 B
Ruby
7 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
class OrganizationsController < ApplicationController
|
|
def users
|
|
@org_users = OrganizationUser.where(organization: @current_user.organization).includes(:user)
|
|
end
|
|
end
|