1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/policies/event_theme_policy.rb

8 lines
166 B
Ruby
Raw Normal View History

2016-06-29 10:38:04 +02:00
class EventThemePolicy < ApplicationPolicy
%w(create update destroy show).each do |action|
2016-06-29 10:38:04 +02:00
define_method "#{action}?" do
user.is_admin?
end
end
end