Class: Stormpath::Rails::ForgotPassword::NewController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/stormpath/rails/forgot_password/new_controller.rb

Instance Method Summary collapse

Instance Method Details

#callObject



5
6
7
8
9
10
# File 'app/controllers/stormpath/rails/forgot_password/new_controller.rb', line 5

def call
  respond_to do |format|
    format.json { render nothing: true, status: 404 }
    format.html { render stormpath_config.web.forgot_password.view }
  end
end