Class: Spotlight::AttachmentsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/spotlight/attachments_controller.rb

Instance Method Summary collapse

Methods included from Controller

#blacklight_config, #current_exhibit, #exhibit_search_action_url, #exhibit_search_facet_url, #search_action_url, #search_facet_url

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#createObject

POST /attachments



8
9
10
11
12
13
14
15
# File 'app/controllers/spotlight/attachments_controller.rb', line 8

def create
  @attachment.attributes = attachment_params
  if @attachment.save
    render :json => @attachment
  else
    render action: 'new'
  end
end