1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/app/policies/reservation_context_policy.rb
Nicolas Florentin 043ff6d47e wip
2023-07-20 16:55:22 +02:00

8 lines
187 B
Ruby

class ReservationContextPolicy < ApplicationPolicy
%w(create update destroy applicable_on_values).each do |action|
define_method "#{action}?" do
user.admin?
end
end
end