Commit 124cb3d9 authored by Jarka Košanová's avatar Jarka Košanová

Merge branch 'conf_epics_update_flag' into 'master'

Enable confidential_epics by default on update

See merge request gitlab-org/gitlab!37933
parents c8261fdf 69b74228
...@@ -13,7 +13,7 @@ module Epics ...@@ -13,7 +13,7 @@ module Epics
# start_date and end_date columns are no longer writable by users because those # start_date and end_date columns are no longer writable by users because those
# are composite fields managed by the system. # are composite fields managed by the system.
params.extract!(:start_date, :end_date) params.extract!(:start_date, :end_date)
params.extract!(:confidential) unless ::Feature.enabled?(:confidential_epics, group) params.extract!(:confidential) unless ::Feature.enabled?(:confidential_epics, group, default_enabled: true)
update_task_event(epic) || update(epic) update_task_event(epic) || update(epic)
......
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