Sha256: c94d59990219192a4f50d9f8078a9e1bd05b1c01c09073aef18a8d723c8c1f0e

Contents?: true

Size: 905 Bytes

Versions: 2

Compression:

Stored size: 905 Bytes

Contents

class PasswordsController < ApplicationController
  before_action :set_<%= singular_table_name %>

  def edit
  end

  def update
    if !@<%= singular_table_name %>.authenticate(params[:current_password])
      redirect_to edit_passwords_path, alert: "The current password you entered is incorrect"
    elsif @<%= singular_table_name %>.update(<%= "#{singular_table_name}_params" %>)
      PasswordMailer.with(user: @<%= singular_table_name %>).changed.deliver_later
      redirect_to root_path, notice: "Your password has been changed successfully"
    else
      render :edit, status: :unprocessable_entity
    end
  end

  private
    def set_<%= singular_table_name %>
      @<%= singular_table_name %> = Current.<%= singular_table_name %>
    end

    def <%= "#{singular_table_name}_params" %>
      params.require(:<%= singular_table_name %>).permit(:password, :password_confirmation)
    end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
authentication-zero-0.0.14 lib/generators/authentication/templates/controllers/html/passwords_controller.rb.tt
authentication-zero-0.0.13 lib/generators/authentication/templates/controllers/html/passwords_controller.rb.tt