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

10 lines
264 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class GroupUrlConstrainer
def matches?(request)
id = request.params[:group_id] || request.params[:id]
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
return false unless DynamicPathValidator.valid_namespace_path?(id)
Group.find_by_full_path(id, follow_redirects: request.get?).present?
2016-11-03 12:29:30 +05:30
end
end