mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
16 lines
223 B
Ruby
16 lines
223 B
Ruby
class OrganizationUser < ApplicationRecord
|
|
belongs_to :organization
|
|
belongs_to :user
|
|
|
|
def admin?
|
|
role == 'admin'
|
|
end
|
|
|
|
def developer?
|
|
role == 'developer'
|
|
end
|
|
|
|
def viewer?
|
|
role == 'viewer'
|
|
end
|
|
end
|