Sha256: 70dabcb601ed488dc7997e033aa3a259ffbdcc8b006b46b36c68cf6fec9f868b
Contents?: true
Size: 825 Bytes
Versions: 2
Compression:
Stored size: 825 Bytes
Contents
# frozen_string_literal: true module MiniBlog module Users class PasswordsController < Devise::PasswordsController layout 'mini_blog/application' # GET /resource/password/new # def new # super # end # POST /resource/password # def create # super # end # GET /resource/password/edit?reset_password_token=abcdef # def edit # super # end # PUT /resource/password # def update # super # end # protected # def after_resetting_password_path_for(resource) # super(resource) # end # The path used after sending reset password instructions # def after_sending_reset_password_instructions_path_for(resource_name) # super(resource_name) # end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mini_blog-0.1.1 | app/controllers/mini_blog/users/passwords_controller.rb |
mini_blog-0.1.0 | app/controllers/mini_blog/users/passwords_controller.rb |