Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-30 18:12:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-30 18:12:04 +0300
commit93501e7509fb61b25f091d81381d3e86842a9cdd (patch)
treee11e5528450c3e3815f59c13d8799722d8d754c1 /lib/gitlab/database_importers
parentbfa1adf9773ba7ea7cde546ea545b72721d36faa (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/database_importers')
-rw-r--r--lib/gitlab/database_importers/work_items/base_type_importer.rb24
1 files changed, 16 insertions, 8 deletions
diff --git a/lib/gitlab/database_importers/work_items/base_type_importer.rb b/lib/gitlab/database_importers/work_items/base_type_importer.rb
index 85ac816f712..c6c45ca4d05 100644
--- a/lib/gitlab/database_importers/work_items/base_type_importer.rb
+++ b/lib/gitlab/database_importers/work_items/base_type_importer.rb
@@ -19,7 +19,8 @@ module Gitlab
status: 'Status',
requirement_legacy: 'Requirement legacy',
test_reports: 'Test reports',
- notifications: 'Notifications'
+ notifications: 'Notifications',
+ current_user_todos: "Current user todos"
}.freeze
WIDGETS_FOR_TYPE = {
@@ -34,18 +35,21 @@ module Gitlab
:iteration,
:weight,
:health_status,
- :notifications
+ :notifications,
+ :current_user_todos
],
incident: [
:description,
:hierarchy,
:notes,
- :notifications
+ :notifications,
+ :current_user_todos
],
test_case: [
:description,
:notes,
- :notifications
+ :notifications,
+ :current_user_todos
],
requirement: [
:description,
@@ -53,7 +57,8 @@ module Gitlab
:status,
:requirement_legacy,
:test_reports,
- :notifications
+ :notifications,
+ :current_user_todos
],
task: [
:assignees,
@@ -65,7 +70,8 @@ module Gitlab
:notes,
:iteration,
:weight,
- :notifications
+ :notifications,
+ :current_user_todos
],
objective: [
:assignees,
@@ -76,7 +82,8 @@ module Gitlab
:notes,
:health_status,
:progress,
- :notifications
+ :notifications,
+ :current_user_todos
],
key_result: [
:assignees,
@@ -87,7 +94,8 @@ module Gitlab
:notes,
:health_status,
:progress,
- :notifications
+ :notifications,
+ :current_user_todos
]
}.freeze