Added custom notify user event (#2398)

* Added custom notify user event.

* Untabbify
This commit is contained in:
woogerboy21 2017-02-08 18:00:53 -05:00 committed by GitHub
parent 0fdb9b7c83
commit b64eab204c
2 changed files with 17 additions and 0 deletions

View file

@ -8,6 +8,7 @@ message Event_NotifyUser {
PROMOTED = 1;
WARNING = 2;
IDLEWARNING = 3;
CUSTOM = 4;
}
extend SessionEvent {
@ -15,5 +16,7 @@ message Event_NotifyUser {
}
optional NotificationType type = 1;
optional string warning_reason = 2;
optional string custom_title = 3;
optional string custom_content = 4;
}