Module: Sufia::FilesController::LocalIngestBehavior

Includes:
ActiveSupport::Concern
Defined in:
app/controllers/concerns/sufia/files_controller/local_ingest_behavior.rb

Instance Method Summary collapse

Instance Method Details

#createObject



5
6
7
8
9
10
11
# File 'app/controllers/concerns/sufia/files_controller/local_ingest_behavior.rb', line 5

def create
  if params[:local_file].present?
    perform_local_ingest
  else
    super
  end
end