diff options
author | Andrew8xx8 <avk@8xx8.ru> | 2013-02-11 17:15:10 +0400 |
---|---|---|
committer | Andrew8xx8 <avk@8xx8.ru> | 2013-02-28 16:10:01 +0400 |
commit | 62de22c142d0ad9d956e7f6dae2eef4559d38436 (patch) | |
tree | 7e0f2d7e7cbda6d79d51222bcfc8a39c93098b40 /config/gitlab.yml.example | |
parent | 68a7ecdaaf0959d5087d08ef3c94bb201e6dd166 (diff) | |
download | gitlab-ce-62de22c142d0ad9d956e7f6dae2eef4559d38436.tar.gz |
External issue tracker params added to config
Diffstat (limited to 'config/gitlab.yml.example')
-rw-r--r-- | config/gitlab.yml.example | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index 0d1d5818b2e..93824e86853 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -8,6 +8,7 @@ # 3. Replace gitlab -> email_from <<<<<<< HEAD +<<<<<<< HEAD production: &base # # 1. GitLab app settings @@ -38,9 +39,17 @@ production: &base # signup_enabled: true # default: false - Account passwords are not sent via the email if signup is enabled. # username_changing_enabled: false # default: true - User can change her username/namespace - ## Available issues trackers + + ## External issues trackers issues_tracker: redmine: + ## If not nil Issues link in project page will be replaced to this + url: "http://redmine.sample" + ## If not nil links from /#\d/ entities from commit messages will replaced to this + ## Use placeholders: + ## :project_id - Gitlab project identifier + ## :issues_tracker_id - Project Name or Id in external issue tracker + ## :id - Issue id (from commit messages) issues_url: "http://redmine.sample/issues/:id" ## Gravatar |