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

8 lines
250 B
Ruby

# frozen_string_literal: true
# PlanFile is a file stored on the file system, associated with a Plan.
# It is known as an information sheet for a plan, in the user interface.
class PlanFile < Asset
mount_uploader :attachment, PlanFileUploader
end