debian-mirror-gitlab/lib/constraints/user_url_constrainer.rb
2016-11-03 12:29:30 +05:30

7 lines
187 B
Ruby

require 'constraints/namespace_url_constrainer'
class UserUrlConstrainer < NamespaceUrlConstrainer
def find_resource(id)
User.find_by('lower(username) = ?', id.downcase)
end
end