debian-mirror-gitlab/app/events/pages_domains/pages_domain_updated_event.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
552 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# 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' },
2023-03-17 16:20:25 +05:30
'domain_id' => { 'type' => 'integer' },
2022-11-25 23:54:43 +05:30
'domain' => { 'type' => 'string' }
},
'required' => %w[project_id namespace_id root_namespace_id]
}
end
end
end