diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-07-02 21:51:48 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-07-02 21:51:48 +0300 |
commit | a2eda66b30d737e3ca1a5fc17a7f36416939a41f (patch) | |
tree | c9b88d5417436ca854c610d892becff5d340e17b /app/mailers/notify.rb | |
parent | e00390b377d9264ad87eea30fdee8025f2c18eec (diff) | |
download | gitlab-ce-a2eda66b30d737e3ca1a5fc17a7f36416939a41f.tar.gz |
Disable issues sort. Recent issues on top. Fixed tests
Diffstat (limited to 'app/mailers/notify.rb')
-rw-r--r-- | app/mailers/notify.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/mailers/notify.rb b/app/mailers/notify.rb index 37b442bce71..ee738b4c580 100644 --- a/app/mailers/notify.rb +++ b/app/mailers/notify.rb @@ -2,8 +2,9 @@ class Notify < ActionMailer::Base include Resque::Mailer add_template_helper ApplicationHelper - default_url_options[:host] = Gitlab.config.web_host + default_url_options[:host] = Gitlab.config.web_host default_url_options[:protocol] = Gitlab.config.web_protocol + default_url_options[:port] = Gitlab.config.web_port default from: Gitlab.config.email_from |