Check all namespaces on validation of new username.

This commit is contained in:
Bryce Johnson 2016-11-17 19:55:59 +01:00
parent 726a414169
commit ed1cd98858
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -0,0 +1,4 @@
---
title: Check all namespaces on validation of new username.
merge_request: 7537
author: