mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
5c152412db
use marcel to test mime types updated mimemagic
9 lines
159 B
Ruby
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
|