Class: Workarea::Api::Storefront::TaxonsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/workarea/api/storefront/taxons_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#cache_page, #skip_session

Methods included from UserActivity

#assert_current_user_activity_id, #current_user_activity_id, #user_activity

Methods included from Authentication

#authentication?, #current_user

Instance Method Details

#showObject



7
8
9
10
11
12
13
14
15
16
# File 'app/controllers/workarea/api/storefront/taxons_controller.rb', line 7

def show
  @taxon = Navigation::Taxon.find(params[:id])

  unless @taxon.active?
    raise Mongoid::Errors::DocumentNotFound.new(
      Navigation::Taxon,
      id: params[:id]
    )
  end
end