2016-11-07 08:16:04 -05:00
|
|
|
class GroupUrlConstrainer
|
|
|
|
def matches?(request)
|
2017-05-24 16:59:26 -04:00
|
|
|
full_path = request.params[:group_id] || request.params[:id]
|
2016-11-14 09:55:31 -05:00
|
|
|
|
2017-05-24 16:59:26 -04:00
|
|
|
return false unless DynamicPathValidator.valid_group_path?(full_path)
|
2016-11-14 09:55:31 -05:00
|
|
|
|
2017-05-24 16:59:26 -04:00
|
|
|
Group.find_by_full_path(full_path, follow_redirects: request.get?).present?
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
2016-10-06 08:14:24 -04:00
|
|
|
end
|