forked from supabase-community/gotrue-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request supabase-community#3 from grsouza/main
Support multiple subscriptions to auth state change
- Loading branch information
Showing
3 changed files
with
46 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
public enum AuthChangeEvent: String { | ||
case SIGNED_IN | ||
case SIGNED_OUT | ||
case USER_UPDATED | ||
case USER_DELETED | ||
case PASSWORD_RECOVERY | ||
case signedIn = "SIGNED_IN" | ||
case signedOut = "SIGNED_OUT" | ||
case userUpdated = "USER_UPDATED" | ||
case userDeleted = "USER_DELETED" | ||
case passwordRecovery = "PASSWORD_RECOVERY" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters