Class: Members::AcceptedInviteEvent
- Inherits:
-
Gitlab::EventStore::Event
- Object
- Gitlab::EventStore::Event
- Members::AcceptedInviteEvent
- Defined in:
- app/events/members/accepted_invite_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 15 16 |
# File 'app/events/members/accepted_invite_event.rb', line 5 def schema { 'type' => 'object', 'required' => %w[source_id source_type user_id member_id], 'properties' => { 'member_id' => { 'type' => 'integer' }, 'source_id' => { 'type' => 'integer' }, 'source_type' => { 'type' => 'string' }, 'user_id' => { 'type' => 'integer' } } } end |