Skip to content

Commit

Permalink
Update FIRAuth_Internal.h
Browse files Browse the repository at this point in the history
  • Loading branch information
renkelvin committed Oct 11, 2023
1 parent 1263a95 commit a361330
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions FirebaseAuth/Sources/Auth/FIRAuth_Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@ NS_ASSUME_NONNULL_BEGIN
- (FIRAuthDataResultCallback)signInFlowAuthDataResultCallbackByDecoratingCallback:
(nullable FIRAuthDataResultCallback)callback;

/** @fn internalCreateUserWithEmail:password:idToken:completion:
@brief Creates a new user account with the specified email address and password.
@param email The user's email address.
@param password The user's password.
@param idToken An optional identity token for the user.
@param completion Called when a user account has been successfully created or when an error
has occurred. Invoked asynchronously on the main thread in the future.
@remarks This method is intended for internal use within the sign-in flow. For external uses
or alternative account creation methods, please consult relevant documentation or methods.
*/
- (void)internalCreateUserWithEmail:(NSString *)email
password:(NSString *)password
idToken:(nullable NSString *)idToken
Expand Down

0 comments on commit a361330

Please sign in to comment.