1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-25 19:54:43 +01:00
2015-05-05 03:10:25 +02:00

14 lines
150 B
Ruby

class LicencePolicy < ApplicationPolicy
def create?
user.is_admin?
end
def update?
create?
end
def destroy?
create?
end
end