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

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