Class: Spree::PasswordController

Inherits:
StoreController show all
Defined in:
app/controllers/spree/password_controller.rb

Instance Method Summary collapse

Methods inherited from StoreController

#current_taxon, #default_products_sort, #permitted_products_params, #products_filters_params, #render_404_if_store_not_exists, #store_filter_names, #store_filter_names_hash

Methods included from AnalyticsHelper

#analytics_event_handlers, #track_event, #unsupported_event?, #visitor_id

Methods included from WishlistHelper

#current_wishlist

Methods included from PasswordProtected

#redirect_to_password

Methods included from StorefrontHelper

#as_aspect_ratio, #page_description, #page_image, #paths_equal?, #render_storefront_partials, #show_account_pane?, #svg_country_icon, #tailwind_classes_for

Methods included from ThemeConcern

#default_url_options, #set_theme_view_paths

Instance Method Details

#checkObject



11
12
13
14
15
16
17
18
19
# File 'app/controllers/spree/password_controller.rb', line 11

def check
  if params[:password] == current_store.storefront_password
    session[:password_valid] = true
    redirect_to root_path
  else
    flash[:error] = 'Incorrect password. Please try again.'
    redirect_to password_path
  end
end

#showObject



7
8
9
# File 'app/controllers/spree/password_controller.rb', line 7

def show
  @current_page = current_theme.pages.find_by(type: 'Spree::Pages::Password')
end