1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/policies/product_policy.rb
2022-09-08 17:51:48 +02:00

21 lines
308 B
Ruby

# frozen_string_literal: true
# Check the access policies for API::ProductsController
class ProductPolicy < ApplicationPolicy
def create?
user.privileged?
end
def update?
user.privileged?
end
def destroy?
user.privileged?
end
def stock_movements?
user.privileged?
end
end