allow dots in hostname

This commit is contained in:
Sam 2014-05-27 23:30:57 +10:00
parent 0c86d9ed9e
commit 69c36cf082
1 changed files with 2 additions and 1 deletions

View File

@ -212,7 +212,8 @@ Discourse::Application.routes.draw do
delete "users/:username" => "users#destroy", constraints: {username: USERNAME_ROUTE_FORMAT}
post "user_avatar/:username/refresh_gravatar" => "user_avatars#refresh_gravatar"
get "user_avatar/:hostname/:username/:size/:version.png" => "user_avatars#show", format: false
get "user_avatar/:hostname/:username/:size/:version.png" => "user_avatars#show",
format: false, constraints: {hostname: /[\w\.]+/}
get "uploads/:site/:id/:sha.:extension" => "uploads#show", constraints: {site: /\w+/, id: /\d+/, sha: /[a-z0-9]{15,16}/i, extension: /\w{2,}/}