Skip to content

Commit

Permalink
Added event types.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Aug 8, 2024
1 parent 861375c commit 3ce1abf
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,25 @@ public enum EventOutcome {

AUTHORITY_NOT_FOUND,

SCHOOL_MOVED
SCHOOL_MOVED,

SCHOOL_NOT_FOUND,

SCHOOL_CONTACT_CREATED,

SCHOOL_CONTACT_UPDATED,

SCHOOL_CONTACT_DELETED,

DISTRICT_CONTACT_CREATED,

DISTRICT_CONTACT_UPDATED,

DISTRICT_CONTACT_DELETED,

AUTHORITY_CONTACT_CREATED,

AUTHORITY_CONTACT_UPDATED,

AUTHORITY_CONTACT_DELETED,
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,23 @@ public enum EventType {

GET_PAGINATED_AUTHORITIES,

MOVE_SCHOOL
MOVE_SCHOOL,

CREATE_SCHOOL_CONTACT,

UPDATE_SCHOOL_CONTACT,

DELETE_SCHOOL_CONTACT,

CREATE_DISTRICT_CONTACT,

UPDATE_DISTRICT_CONTACT,

DELETE_DISTRICT_CONTACT,

CREATE_AUTHORITY_CONTACT,

UPDATE_AUTHORITY_CONTACT,

DELETE_AUTHORITY_CONTACT
}

0 comments on commit 3ce1abf

Please sign in to comment.