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

10 lines
367 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# CAO file attached to a project documentation
2015-05-05 03:10:25 +02:00
class ProjectCao < Asset
mount_uploader :attachment, ProjectCaoUploader
validates :attachment, file_size: { maximum: Rails.application.secrets.max_cao_size&.to_i || 5.megabytes.to_i }
validates :attachment, file_mime_type: { content_type: ENV['ALLOWED_MIME_TYPES'].split(' ') }
2015-05-05 03:10:25 +02:00
end