Commit 71decb65 authored by Rémy Coutable's avatar Rémy Coutable Committed by Alejandro Rodríguez

Merge branch 'namespace-validation' into 'master'

Check all namespaces on validation of new username.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/24519 and https://gitlab.com/gitlab-org/gitlab-ce/issues/24580

See merge request !7537
parent b6550386
......@@ -86,7 +86,7 @@ class UsersController < ApplicationController
end
def exists
render json: { exists: Namespace.where(path: params[:username].downcase).any? }
render json: { exists: !!Namespace.find_by_path_or_name(params[:username]) }
end
private
......
---
title: Check all namespaces on validation of new username.
merge_request: 7537
author:
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment