Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2024-12-13 15:35:51 +00:00
parent 6238e8c035
commit 06e3d641cb
60 changed files with 678 additions and 482 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,19 +0,0 @@
# 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_id' => { 'type' => 'integer' },
'domain' => { 'type' => 'string' }
},
'required' => %w[project_id namespace_id root_namespace_id]
}
end
end
end