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

17 lines
288 B
Ruby
Raw Normal View History

2021-06-25 17:24:34 +02:00
# frozen_string_literal: true
2016-03-23 18:39:41 +01:00
2021-06-25 17:24:34 +02:00
# Check the access policies for API::PricesController
class PricePolicy < ApplicationPolicy
2021-12-21 14:18:03 +01:00
def create?
user.admin? && record.duration != 60
end
2021-12-21 17:13:40 +01:00
def destroy?
user.admin? && record.duration != 60
end
2016-03-23 18:39:41 +01:00
def update?
user.admin?
2016-03-23 18:39:41 +01:00
end
end