mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-05 20:46:14 +01:00
8 lines
173 B
Ruby
8 lines
173 B
Ruby
class CouponPolicy < ApplicationPolicy
|
|
%w(index show create update destroy send_to).each do |action|
|
|
define_method "#{action}?" do
|
|
user.admin?
|
|
end
|
|
end
|
|
end
|