summaryrefslogtreecommitdiff
path: root/app/events/projects/project_path_changed_event.rb
blob: 965f9258d3f932a6b084f60e246663ae2c74f7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Projects
  class ProjectPathChangedEvent < ::Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'properties' => {
          'project_id' => { 'type' => 'integer' },
          'namespace_id' => { 'type' => 'integer' },
          'root_namespace_id' => { 'type' => 'integer' },
          'old_path' => { 'type' => 'string' },
          'new_path' => { 'type' => 'string' }
        },
        'required' => %w[project_id namespace_id root_namespace_id old_path new_path]
      }
    end
  end
end