1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/policies/i_calendar_policy.rb
2019-11-27 17:05:19 +01:00

13 lines
208 B
Ruby

# frozen_string_literal: true
# Check the access policies for API::ICalendarController
class ICalendarPolicy < ApplicationPolicy
def create?
user.admin?
end
def destroy?
user.admin?
end
end