a0c33254e7
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
13 lines
184 B
Ruby
13 lines
184 B
Ruby
class TeamMemberPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
@account_user.administrator?
|
|
end
|
|
|
|
def destroy?
|
|
@account_user.administrator?
|
|
end
|
|
end
|