mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
18 lines
178 B
Ruby
18 lines
178 B
Ruby
|
class CreditPolicy < ApplicationPolicy
|
||
|
def index?
|
||
|
user.is_admin?
|
||
|
end
|
||
|
|
||
|
def create?
|
||
|
index?
|
||
|
end
|
||
|
|
||
|
def update?
|
||
|
index?
|
||
|
end
|
||
|
|
||
|
def destroy?
|
||
|
index?
|
||
|
end
|
||
|
end
|