Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8894c0f3
Commit
8894c0f3
authored
Jul 15, 2020
by
Alexandru Croitor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation on feature flag
parent
2c00d968
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
doc/user/project/integrations/jira.md
doc/user/project/integrations/jira.md
+20
-0
No files found.
doc/user/project/integrations/jira.md
View file @
8894c0f3
...
...
@@ -249,3 +249,23 @@ which may lead to a `401 unauthorized` error when testing your Jira integration.
If CAPTCHA has been triggered, you will not be able to use Jira's REST API to
authenticate with the Jira site. You will need to log in to your Jira instance
and complete the CAPTCHA.
### Enable or disable Jira Issue List **(PREMIUM)**
Jira Issue List is deployed as a license-gated feature that implies existence of a
`jira_issues_integration`
feature flag check, which is
**enabled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
..path/to/administration/feature_flags.md
)
can opt to disable it for your instance.
To disable it:
```
ruby
Feature
.
disable
(
:jira_issues_integration
)
```
To enable it:
```
ruby
Feature
.
enable
(
:jira_issues_integration
)
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment