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

8 lines
250 B
Ruby
Raw Normal View History

# 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.
2016-03-23 18:39:41 +01:00
class PlanFile < Asset
mount_uploader :attachment, PlanFileUploader
end