Sha256: 59e8f66cd9b2a7a96a1b7c03fdd07d39eb2f717dbe52f2e69d5b1b384d41184c

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

class ProfileController < ApplicationController
  skip_ensure_email_is_verified

  def edit
    @update_profile_information_form = UpdateProfileInformationForm.new(name: Current.auth.user.name, email: Current.auth.user.email)
    @update_password_form = UpdatePasswordForm.new
    @delete_user_form = DeleteUserForm.new

    render 'profile/edit'
  end

  def update
    @update_profile_information_form = UpdateProfileInformationForm.new(params.permit(:name, :email))

    return render partial: 'profile/partials/update_profile_information_form', status: :unprocessable_entity if @update_profile_information_form.invalid?

    @update_profile_information_form.update

    redirect_to profile_edit_path, flash: { status: 'profile-updated' }
  end

  def destroy
    @delete_user_form = DeleteUserForm.new(params.permit(:password))

    return render partial: 'profile/partials/delete_user_form', status: :unprocessable_entity if @delete_user_form.invalid?

    user = Current.auth.user

    Current.auth.logout

    user.delete

    reset_session

    redirect_to '/'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kaze-0.11.0 stubs/hotwire/app/controllers/profile_controller.rb
kaze-0.10.0 stubs/hotwire/app/controllers/profile_controller.rb