mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +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
|