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>2024-01-19 18:10:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-19 18:10:53 +0300
commit8f3a9dbb94b5a9ae4570a22bbc2a75e7572407c8 (patch)
tree0d7e5d6d5747b57a93df1181bd86a7a127c16934 /app/models/work_items/widgets/base.rb
parent7344cec8c24f1599086498ba19096cf9918ee168 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/work_items/widgets/base.rb')
-rw-r--r--app/models/work_items/widgets/base.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/models/work_items/widgets/base.rb b/app/models/work_items/widgets/base.rb
index c4e87decdbf..a3051f17158 100644
--- a/app/models/work_items/widgets/base.rb
+++ b/app/models/work_items/widgets/base.rb
@@ -15,10 +15,18 @@ module WorkItems
[]
end
+ def self.sync_params
+ []
+ end
+
def self.process_quick_action_param(param_name, value)
{ param_name => value }
end
+ def self.process_sync_params(params)
+ params
+ end
+
def self.callback_class
WorkItems::Callbacks.const_get(name.demodulize, false)
rescue NameError