1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/policies/machine_category_policy.rb
2022-12-20 18:45:53 +01:00

8 lines
168 B
Ruby

class MachineCategoryPolicy < ApplicationPolicy
%w[create update destroy show].each do |action|
define_method "#{action}?" do
user.admin?
end
end
end