Sha256: 413b7b3aea8aa1ee27fcbd2e581a0ecfc6853cb117abd77456012b4d05f13244

Contents?: true

Size: 370 Bytes

Versions: 62

Compression:

Stored size: 370 Bytes

Contents

module Workarea
  class Storefront::CategoriesController < Storefront::ApplicationController
    before_action :cache_page

    def show
      model = Catalog::Category.find_by(slug: params[:id])
      raise InvalidDisplay unless model.active? || current_user.try(:admin?)
      @category = Storefront::CategoryViewModel.new(model, view_model_options)
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.5.15 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.36 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.14 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.35 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.13 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.34 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.12 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.33 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.11 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.10 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.32 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.9 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.31 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.8 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.30 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.7 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.29 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.6 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.4.28 app/controllers/workarea/storefront/categories_controller.rb
workarea-storefront-3.5.5 app/controllers/workarea/storefront/categories_controller.rb