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

ouyang
ouyangxuhua 10 years ago
parent a2e6f0ee5f
commit 402b0e9c24

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

Loading…
Cancel
Save