mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FIX: allow staff members to edit staged users preferences
This commit is contained in:
@ -251,8 +251,8 @@ class ApplicationController < ActionController::Base
|
||||
user = if params[:username]
|
||||
username_lower = params[:username].downcase
|
||||
username_lower.gsub!(/\.json$/, '')
|
||||
find_opts = {username_lower: username_lower}
|
||||
find_opts[:active] = true unless opts[:include_inactive]
|
||||
find_opts = { username_lower: username_lower }
|
||||
find_opts[:active] = true unless opts[:include_inactive] || current_user.staff?
|
||||
User.find_by(find_opts)
|
||||
elsif params[:external_id]
|
||||
external_id = params[:external_id].gsub(/\.json$/, '')
|
||||
|
Reference in New Issue
Block a user