mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +01:00
8 lines
187 B
Ruby
8 lines
187 B
Ruby
class AvailabilityPolicy < ApplicationPolicy
|
|
%w(index? show? create? update? destroy? reservations?).each do |action|
|
|
define_method action do
|
|
user.is_admin?
|
|
end
|
|
end
|
|
end
|