gitlab-org--gitlab-foss/lib/constraints/group_url_constrainer.rb

8 lines
162 B
Ruby

require 'constraints/namespace_url_constrainer'
class GroupUrlConstrainer < NamespaceUrlConstrainer
def find_resource(id)
Group.find_by_path(id)
end
end