Other: Add UserLoading/UserLoadFail events

This commit is contained in:
James Houlahan
2022-11-02 13:32:14 +01:00
parent 75b788b793
commit 943d95a725
3 changed files with 31 additions and 8 deletions

View File

@ -23,7 +23,19 @@ type AllUsersLoaded struct {
eventBase
}
type UserLoaded struct {
type UserLoading struct {
eventBase
UserID string
}
type UserLoadSuccess struct {
eventBase
UserID string
}
type UserLoadFail struct {
eventBase
UserID string