Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2024-03-07 03:10:20 +00:00
parent 7e99f6b9fc
commit 3e0178f80c
17 changed files with 441 additions and 83 deletions

View File

@ -0,0 +1,17 @@
# frozen_string_literal: true
module WorkItems
class WorkItemDeletedEvent < Gitlab::EventStore::Event
def schema
{
'type' => 'object',
'required' => %w[id namespace_id],
'properties' => {
'id' => { 'type' => 'integer' },
'namespace_id' => { 'type' => 'integer' },
'work_item_parent_id' => { 'type' => 'integer' }
}
}
end
end
end