summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2017-03-02 14:54:52 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-03-02 14:54:52 -0300
commit41d9a911f0dfc88bd22e2e09abf6b4c4c1a2bec4 (patch)
tree9cb82ea3db87102ba96a5eb9bed895715a799ec8 /config
parent1c4a107578d1faad65af3a2cf3bba8a910356ae8 (diff)
Fix keys route to accept usernames with dots
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index b152c9c..d388ab7 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -58,6 +58,6 @@ LeapWeb::Application.routes.draw do
get "/.well-known/host-meta" => 'webfinger#host_meta'
get "/webfinger" => 'webfinger#search'
- get "/key/:login" => 'keys#show'
+ get "/key/:login" => 'keys#show', :constraints => { :login => /[^\/]+/ }
end