Fix font not resetting when logging out (#8670)
* Fix font not resetting when logging out * Adopt on_logged_in and on_logged_out into DispatcherAction * Add tests * Add copyright
This commit is contained in:
parent
f3b762c1a8
commit
d75e2f19c5
11 changed files with 97 additions and 39 deletions
|
@ -317,5 +317,15 @@ export enum Action {
|
|||
/**
|
||||
* Show current room topic
|
||||
*/
|
||||
ShowRoomTopic = "show_room_topic"
|
||||
ShowRoomTopic = "show_room_topic",
|
||||
|
||||
/**
|
||||
* Fired when the client was logged out. No additional payload information required.
|
||||
*/
|
||||
OnLoggedOut = "on_logged_out",
|
||||
|
||||
/**
|
||||
* Fired when the client was logged in. No additional payload information required.
|
||||
*/
|
||||
OnLoggedIn = "on_logged_in",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue