diff options
author | Morgan Chen <morganchen12@gmail.com> | 2018-02-22 09:58:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 09:58:04 -0800 |
commit | ddc12c0fc194a30c792d23f12120ad0703859b73 (patch) | |
tree | e9d972ca640b18796c25e64b8446696ba8982e02 /Firebase/Auth | |
parent | 442d46fb9b013d5b6204891154df8625eb1cd83d (diff) | |
parent | a21ccc65eb0d80636949c451408383bd7fff048a (diff) |
Merge pull request #694 from morganchen12/auth-docs
add FIRUser behavior to documentation
Diffstat (limited to 'Firebase/Auth')
-rw-r--r-- | Firebase/Auth/Source/Public/FIRUser.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Firebase/Auth/Source/Public/FIRUser.h b/Firebase/Auth/Source/Public/FIRUser.h index b11e447..0cf872f 100644 --- a/Firebase/Auth/Source/Public/FIRUser.h +++ b/Firebase/Auth/Source/Public/FIRUser.h @@ -56,7 +56,11 @@ typedef void (^FIRSendEmailVerificationCallback)(NSError *_Nullable error) NS_SWIFT_NAME(SendEmailVerificationCallback); /** @class FIRUser - @brief Represents a user. + @brief Represents a user. Firebase Auth does not attempt to validate users + when loading them from the keychain. Invalidated users (such as those + whose passwords have been changed on another client) are automatically + logged out when an auth-dependent operation is attempted or when the + ID token is automatically refreshed. @remarks This class is thread-safe. */ NS_SWIFT_NAME(User) |