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

8 lines
163 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.admin?
2016-06-29 10:38:04 +02:00
end
end
end