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

11 lines
264 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Check the access policies for API::MachineCategoriesController
2022-12-16 18:43:38 +01:00
class MachineCategoryPolicy < ApplicationPolicy
%w[create update destroy show].each do |action|
define_method "#{action}?" do
user.admin?
end
end
end