Class: ProjectAuthorizations::AuthorizationsRemovedEvent
- Inherits:
-
Gitlab::EventStore::Event
- Object
- Gitlab::EventStore::Event
- ProjectAuthorizations::AuthorizationsRemovedEvent
- Defined in:
- app/events/project_authorizations/authorizations_removed_event.rb
Instance Attribute Summary
Attributes inherited from Gitlab::EventStore::Event
Instance Method Summary collapse
Methods inherited from Gitlab::EventStore::Event
Constructor Details
This class inherits a constructor from Gitlab::EventStore::Event
Instance Method Details
#schema ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'app/events/project_authorizations/authorizations_removed_event.rb', line 5 def schema { 'type' => 'object', 'required' => %w[project_id user_ids], 'properties' => { 'project_id' => { 'type' => 'integer' }, 'user_ids' => { 'type' => 'array' } } } end |