Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-10-10 13:06:08 +0400
committerCiro Santilli <ciro.santilli@gmail.com>2014-10-16 01:01:31 +0400
commit39c66c822ec955205aa69a7d38b16669f488e8da (patch)
treefa9d688476bd76df299373d02348ed8f13d21fdd /lib/gitlab/url_builder.rb
parenta0a826ebdcb783c660dd40d8cb217db28a9d4998 (diff)
Use Gitlab.config instead of Settings everywhere
Diffstat (limited to 'lib/gitlab/url_builder.rb')
-rw-r--r--lib/gitlab/url_builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/url_builder.rb b/lib/gitlab/url_builder.rb
index de7e0404086..877488d8471 100644
--- a/lib/gitlab/url_builder.rb
+++ b/lib/gitlab/url_builder.rb
@@ -19,7 +19,7 @@ module Gitlab
issue = Issue.find(id)
project_issue_url(id: issue.iid,
project_id: issue.project,
- host: Settings.gitlab['url'])
+ host: Gitlab.config.gitlab['url'])
end
end
end