Sha256: a64bb6f0acc08ced6261a8804039e2fba32d8003ec8770a098e14fbe2255072b

Contents?: true

Size: 642 Bytes

Versions: 42

Compression:

Stored size: 642 Bytes

Contents

# frozen_string_literal: true

module Spotlight
  ##
  # Create image attachments for the sir-trevor image widget
  class AttachmentsController < ApplicationController
    before_action :authenticate_user!
    load_and_authorize_resource :exhibit, class: 'Spotlight::Exhibit'
    load_and_authorize_resource through: :exhibit

    # POST /attachments
    def create
      @attachment.attributes = attachment_params
      @attachment.save!
      render json: @attachment
    end

    private

    # Only allow trusted parameters through.
    def attachment_params
      params.require(:attachment).permit(:name, :file, :uid)
    end
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
blacklight-spotlight-4.6.1 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.6.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.5.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.4.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.6 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.5 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.4 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.3 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.2 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.1 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.3.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.2.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.1.2 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.1.1 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.1.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.0.3 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.0.2 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.0.1 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-4.0.0 app/controllers/spotlight/attachments_controller.rb
blacklight-spotlight-3.6.0.beta10 app/controllers/spotlight/attachments_controller.rb