mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
Raise 404 from Admin::UsersController#show if no user found
[Fixes #353]
This commit is contained in:
@ -16,6 +16,7 @@ class Admin::UsersController < Admin::AdminController
|
||||
|
||||
def show
|
||||
@user = User.where(username_lower: params[:id]).first
|
||||
raise Discourse::NotFound.new unless @user
|
||||
render_serialized(@user, AdminDetailedUserSerializer, root: false)
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user