a0c33254e7
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
21 lines
260 B
Ruby
21 lines
260 B
Ruby
class TeamPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
@account_user.administrator?
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
@account_user.administrator?
|
|
end
|
|
|
|
def destroy?
|
|
@account_user.administrator?
|
|
end
|
|
end
|