mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-04-08 23:53:53 +02:00
14 lines
145 B
Ruby
14 lines
145 B
Ruby
class ThemePolicy < ApplicationPolicy
|
|
def create?
|
|
user.admin?
|
|
end
|
|
|
|
def update?
|
|
create?
|
|
end
|
|
|
|
def destroy?
|
|
create?
|
|
end
|
|
end
|