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:
authorSteven Burgart <skburgart@gmail.com>2015-03-27 22:57:53 +0300
committerSteven Burgart <skburgart@gmail.com>2015-03-27 22:57:53 +0300
commit471487d2edf62a2f17736580013aa6ad4939503c (patch)
treef433909b3949f09c72330e80c276ba41510b2f2e /app/models/project_services
parent3d4c2d0b510f15ac3f0abe6ba4468dd019b06278 (diff)
Fix broken link in jira service
Diffstat (limited to 'app/models/project_services')
-rw-r--r--app/models/project_services/jira_service.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/app/models/project_services/jira_service.rb b/app/models/project_services/jira_service.rb
index fcd9dc2f336..bfa8fc7b860 100644
--- a/app/models/project_services/jira_service.rb
+++ b/app/models/project_services/jira_service.rb
@@ -24,13 +24,12 @@ class JiraService < IssueTrackerService
prop_accessor :title, :description, :project_url, :issues_url, :new_issue_url
def help
- issue_tracker_link = help_page_path("integration", "external-issue-tracker")
+ line1 = 'Setting `project_url`, `issues_url` and `new_issue_url` will '\
+ 'allow a user to easily navigate to the Jira issue tracker. See the '\
+ '[integration doc](http://doc.gitlab.com/ce/integration/external-issue-tracker.html) '\
+ 'for details.'
- line1 = "Setting `project_url`, `issues_url` and `new_issue_url` will "\
- "allow a user to easily navigate to the Jira issue tracker. "\
- "See the [integration doc](#{issue_tracker_link}) for details."
-
- line2 = 'Support for referencing commits and automatic closing of Jira issues directly ' \
+ line2 = 'Support for referencing commits and automatic closing of Jira issues directly '\
'from GitLab is [available in GitLab EE.](http://doc.gitlab.com/ee/integration/jira.html)'
[line1, line2].join("\n\n")