Class: Hyrax::FeaturedWorksController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Hyrax::FeaturedWorksController
- Defined in:
- app/controllers/hyrax/featured_works_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'app/controllers/hyrax/featured_works_controller.rb', line 3 def create :create, FeaturedWork @featured_work = FeaturedWork.new(work_id: params[:id]) respond_to do |format| if @featured_work.save format.json { render json: @featured_work, status: :created } else format.json { render json: @featured_work.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/controllers/hyrax/featured_works_controller.rb', line 16 def destroy :destroy, FeaturedWork @featured_work = FeaturedWork.find_by(work_id: params[:id]) if @featured_work # Handle the case where a separate request may have already # destroyed this work @featured_work.destroy end respond_to do |format| format.json { head :no_content } end end |