debian-mirror-gitlab/lib/constraints/group_url_constrainer.rb

10 lines
277 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class GroupUrlConstrainer
def matches?(request)
2017-09-10 17:25:29 +05:30
full_path = request.params[:group_id] || request.params[:id]
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
return false unless NamespacePathValidator.valid_path?(full_path)
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
Group.find_by_full_path(full_path, follow_redirects: request.get?).present?
2016-11-03 12:29:30 +05:30
end
end