mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
287 B
Ruby
15 lines
287 B
Ruby
module Spree
|
|
class StoreController < Spree::BaseController
|
|
layout 'darkswarm'
|
|
|
|
include Spree::Core::ControllerHelpers::Order
|
|
|
|
include I18nHelper
|
|
before_filter :set_locale
|
|
|
|
def unauthorized
|
|
render 'shared/unauthorized', status: :unauthorized
|
|
end
|
|
end
|
|
end
|