Commit 8d0f631a authored by Alex Kalderimis's avatar Alex Kalderimis

Enable design_management_reference_filter_gfm_pipeline by default

parent 73d7ea93
---
title: Enable design management reference filter by default
merge_request: 39113
author:
type: changed
...@@ -279,21 +279,21 @@ This will be rendered as: ...@@ -279,21 +279,21 @@ This will be rendered as:
### Enable or disable design references **(CORE ONLY)** ### Enable or disable design references **(CORE ONLY)**
Design reference parsing is under development and not ready for production use. It is Design reference parsing is
deployed behind a feature flag that is **disabled by default**. deployed behind a feature flag that is **enabled by default**.
[GitLab administrators with access to the GitLab Rails console](../../../administration/feature_flags.md) [GitLab administrators with access to the GitLab Rails console](../../../administration/feature_flags.md)
can enable it for your instance. can disable it for your instance.
To enable it: To disable it:
```ruby ```ruby
Feature.enable(:design_management_reference_filter_gfm_pipeline) Feature.disable(:design_management_reference_filter_gfm_pipeline)
``` ```
To disable it: To re-enable it:
```ruby ```ruby
Feature.disable(:design_management_reference_filter_gfm_pipeline) Feature.enable(:design_management_reference_filter_gfm_pipeline)
``` ```
## Design activity records ## Design activity records
......
...@@ -114,7 +114,7 @@ module Banzai ...@@ -114,7 +114,7 @@ module Banzai
end end
def enabled? def enabled?
Feature.enabled?(FEATURE_FLAG, parent) Feature.enabled?(FEATURE_FLAG, parent, default_enabled: true)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment