mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
12 lines
129 B
Ruby
12 lines
129 B
Ruby
class CustomAssetPolicy < ApplicationPolicy
|
|
|
|
def create?
|
|
user.is_admin?
|
|
end
|
|
|
|
def update?
|
|
user.is_admin?
|
|
end
|
|
|
|
end
|