Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix broken account options page after entering incorrect inform… #57

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/controllers/registrations_controller.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

class RegistrationsController < Devise::RegistrationsController
layout "settings", only: :edit
before_action :set_selected, only: :edit
layout "settings", only: %i[edit update]
before_action :set_selected, only: %i[edit update]

def destroy_pfp
redirect_to new_user_session_path, alert: "You must be signed in to do that." and return unless user_signed_in?
Expand Down