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
fb6969e7
Commit
fb6969e7
authored
Jun 15, 2020
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply 1 suggestion(s) to 1 file(s)
parent
f92ccbaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
doc/ci/directed_acyclic_graph/index.md
doc/ci/directed_acyclic_graph/index.md
+4
-11
No files found.
doc/ci/directed_acyclic_graph/index.md
View file @
fb6969e7
...
...
@@ -101,18 +101,11 @@ DAG Visualization is under development and requires more testing, but is being m
It is deployed behind a feature flag that is
**disabled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
../../administration/feature_flags.md
)
can opt to enable it for your instance
.
can opt to enable it for your instance
:
```
ruby
#
To force-enable it globally
#
Instance-wide
Feature
.
enable
(
:dag_pipeline_tab
)
# To Enable DAG tab only on a specific project, disabling it system-wide
Feature
.
enable
(
:dag_pipeline_tab
,
Project
.
find_by_full_path
(
"gitlab-org/gitlab"
))
# To disable it globally
Feature
.
disable
(
:dag_pipeline_tab
)
# To revert to default
Feature
.
remove
(
:dag_pipeline_tab
)
# or by project
Feature
.
enable
(
:dag_pipeline_tab
,
Project
.
find
(
<
project
id
>
))
```
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