1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/app/policies/file_policy.rb
Sylvain 5c152412db test mime type of a file
use marcel to test mime types
updated mimemagic
2020-06-03 16:25:13 +02:00

9 lines
159 B
Ruby

# frozen_string_literal: true
# Check the access policies for API::FilesController
class FilePolicy < ApplicationPolicy
def mime?
user.admin?
end
end