Remove old authentication checks in UserController

This commit is contained in:
Andreas Nedbal 2022-06-26 19:46:12 +02:00 committed by Karina Kwiatek
parent 8141db2ca7
commit 52de0cddb0

View file

@ -1,5 +1,5 @@
class UserController < ApplicationController
before_action :authenticate_user!, only: %w[edit update edit_privacy update_privacy data export begin_export edit_security update_2fa destroy_2fa reset_user_recovery_codes edit_mute]
before_action :authenticate_user!, only: %w[edit_privacy update_privacy data export begin_export edit_security update_2fa destroy_2fa reset_user_recovery_codes edit_mute]
def show
@user = User.where('LOWER(screen_name) = ?', params[:username].downcase).includes(:profile).first!