Sha256: ee4f4a279f8626d5d6825d9adc19d95c550aef2b7423dec06739dc4b374e7a50
Contents?: true
Size: 909 Bytes
Versions: 11
Compression:
Stored size: 909 Bytes
Contents
class Spree::UserPasswordsController < Devise::PasswordsController include Spree::Core::ControllerHelpers helper 'spree/users', 'spree/base' after_filter :associate_user def new super end # Temporary Override until next Devise release (i.e after v1.3.4) # line: # respond_with resource, :location => new_session_path(resource_name) # is generating bad url /session/new.user # # overridden to: # respond_with resource, :location => login_path # def create self.resource = resource_class.send_reset_password_instructions(params[resource_name]) if resource.errors.empty? set_flash_message(:notice, :send_instructions) if is_navigational_format? respond_with resource, :location => spree.login_path else respond_with_navigational(resource){ render_with_scope :new } end end def edit super end def update super end end
Version data entries
11 entries across 11 versions & 1 rubygems