Class: Nyauth::PasswordsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/nyauth/passwords_controller.rb

Instance Method Summary collapse

Methods included from ClientConcern

#initialize

Methods included from ApplicationHelper

#detect_url_helper, #detect_url_helper_for_app, #detect_url_helper_for_nyauth, #method_missing, #root_path

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Nyauth::ApplicationHelper

Instance Method Details

#editObject



6
7
# File 'app/controllers/nyauth/passwords_controller.rb', line 6

def edit
end

#updateObject



9
10
11
12
13
# File 'app/controllers/nyauth/passwords_controller.rb', line 9

def update
  @client.attributes = client_params
  @client.save(context: :update_password)
  respond_with(@client, location: Nyauth.configuration.redirect_path_after_update_password.call(nyauth_client_name) || main_app.root_path)
end