Module: FormAttachmentCreate

Extended by:
ActiveSupport::Concern
Included in:
V0::DecisionReviewEvidencesController, V0::Form1010cg::AttachmentsController, V0::HCAAttachmentsController, V0::Preneeds::PreneedAttachmentsController, V0::UploadSupportingEvidencesController
Defined in:
app/controllers/concerns/form_attachment_create.rb

Instance Method Summary collapse

Instance Method Details

#createObject



6
7
8
9
10
11
12
# File 'app/controllers/concerns/form_attachment_create.rb', line 6

def create
  validate_file_upload_class!
  save_attachment_to_cloud!
  save_attachment_to_db!

  render(json: form_attachment)
end