Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_url_constrainer.rb « constraints « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 559f510944a7f22eadbe73a96154406dcec15dcd (plain)
1
2
3
4
5
6
7
8
9
class GroupUrlConstrainer
  def matches?(request)
    id = request.params[:id]

    return false unless NamespaceValidator.valid_full_path?(id)

    Group.find_by_full_path(id).present?
  end
end