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

9 lines
163 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
2016-03-23 18:39:41 +01:00
def update?
user.admin?
2016-03-23 18:39:41 +01:00
end
end