summaryrefslogtreecommitdiff
path: root/lib/constraints/user_url_constrainer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/constraints/user_url_constrainer.rb')
-rw-r--r--lib/constraints/user_url_constrainer.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/constraints/user_url_constrainer.rb b/lib/constraints/user_url_constrainer.rb
index d16ae7f3f40..28159dc0dec 100644
--- a/lib/constraints/user_url_constrainer.rb
+++ b/lib/constraints/user_url_constrainer.rb
@@ -1,9 +1,5 @@
class UserUrlConstrainer
def matches?(request)
- full_path = request.params[:username]
-
- return false unless DynamicPathValidator.valid_user_path?(full_path)
-
- User.find_by_full_path(full_path, follow_redirects: request.get?).present?
+ User.find_by_full_path(request.params[:username], follow_redirects: request.get?).present?
end
end