Custom issue tracker
This commit is contained in:
parent
f562e69eab
commit
129036b2cf
2 changed files with 21 additions and 0 deletions
|
@ -22,6 +22,7 @@ Visit the links below for details:
|
|||
- [Redmine](../user/project/integrations/redmine.md)
|
||||
- [Jira](../user/project/integrations/jira.md)
|
||||
- [Bugzilla](../user/project/integrations/bugzilla.md)
|
||||
- [Custom Issue Tracker](../user/project/integrations/custom_issue_tracker.md)
|
||||
|
||||
### Service Template
|
||||
|
||||
|
|
20
doc/user/project/integrations/custom_issue_tracker.md
Normal file
20
doc/user/project/integrations/custom_issue_tracker.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Custom Issue Tracker Service
|
||||
|
||||
To enable the Custom Issue Tracker integration in a project, navigate to the
|
||||
[Integrations page](project_services.md#accessing-the-project-services), click
|
||||
the **Customer Issue Tracker** service, and fill in the required details on the page as described
|
||||
in the table below.
|
||||
|
||||
| Field | Description |
|
||||
| ----- | ----------- |
|
||||
| `title` | A title for the issue tracker (to differentiate between instances, for example) |
|
||||
| `description` | A name for the issue tracker (to differentiate between instances, for example) |
|
||||
| `project_url` | Currently unused. Will be changed in a future release. |
|
||||
| `issues_url` | The URL to the issue in the issue tracker project that is linked to this GitLab project. Note that the `issues_url` requires `:id` in the URL. This ID is used by GitLab as a placeholder to replace the issue number. For example, `https://customissuetracker.com/project-name/:id`. |
|
||||
| `new_issue_url` | Currently unused. Will be changed in a future release. |
|
||||
|
||||
|
||||
## Referencing issues
|
||||
|
||||
Issues are referenced with `#<ID>`, where `<ID>` is a number (example `#143`).
|
||||
So with the example above, `#143` would refer to `https://customissuetracker.com/project-name/143`.
|
Loading…
Reference in a new issue