Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2022-09-28 12:07:50 +00:00
parent f3cfb235c7
commit eb3a23aaaa
105 changed files with 1244 additions and 549 deletions

View File

@ -0,0 +1,18 @@
# frozen_string_literal: true
module PagesDomains
class PagesDomainUpdatedEvent < ::Gitlab::EventStore::Event
def schema
{
'type' => 'object',
'properties' => {
'project_id' => { 'type' => 'integer' },
'namespace_id' => { 'type' => 'integer' },
'root_namespace_id' => { 'type' => 'integer' },
'domain' => { 'type' => 'string' }
},
'required' => %w[project_id namespace_id root_namespace_id]
}
end
end
end