08d21fe899
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
15 lines
309 B
Ruby
15 lines
309 B
Ruby
require_relative 'constrainer_helper'
|
|
|
|
class UserUrlConstrainer
|
|
include ConstrainerHelper
|
|
|
|
def matches?(request)
|
|
id = extract_resource_path(request.path)
|
|
|
|
if id =~ Gitlab::Regex.namespace_regex
|
|
User.find_by('lower(username) = ?', id.downcase).present?
|
|
else
|
|
false
|
|
end
|
|
end
|
|
end
|