Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authorizations_changed_event.rb « project_authorizations « events « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24afae9d6fd4ae391d637806701b7c78dbc24056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module ProjectAuthorizations
  class AuthorizationsChangedEvent < ::Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'required' => %w[project_id],
        'properties' => {
          'project_id' => { 'type' => 'integer' }
        }
      }
    end
  end
end