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

13 lines
242 B
Ruby
Raw Normal View History

2019-11-27 17:05:19 +01:00
# frozen_string_literal: true
# Check the access policies for API::ICalendarController
class ICalendarPolicy < ApplicationPolicy
def create?
user.admin? || user.manager?
2019-11-27 17:05:19 +01:00
end
def destroy?
user.admin? || user.manager?
2019-11-27 17:05:19 +01:00
end
end