域名都使用Setting.host_name获取主机名

This commit is contained in:
ouyangxuhua 2016-03-14 23:15:08 +08:00
parent a2e6f0ee5f
commit 402b0e9c24
1 changed files with 2 additions and 14 deletions

View File

@ -2943,21 +2943,9 @@ int main(int argc, char** argv){
end
def user_url_in_org(user_id)
if Rails.env.development?
return "http://localhost:3000/users/" + user_id.to_s
elsif Rails.env.test?
return "https://www.test.forge.trustie.net/users/" + user_id.to_s
else
return "https://www.trustie.net/users/" + user_id.to_s
end
return Setting.host_name + "/users/" + user_id.to_s
end
def logout_url_without_domain
if Rails.env.development?
return "http://localhost:3000/logout"
elsif Rails.env.test?
return "https://test.forge.trustie.net/logout"
else
return "https://www.trustie.net/logout"
end
return Setting.host_name + "/logout"
end