[js][ios][android][auth] applyActionCode implemented

This commit is contained in:
Salakar
2017-07-05 14:16:35 +01:00
parent 180e8da4f2
commit 08f4f0c97b
4 changed files with 106 additions and 35 deletions

View File

@@ -165,6 +165,21 @@ export default class Auth extends Base {
return FirebaseAuth.confirmPasswordReset(code, newPassword);
}
/**
* Applies a verification code sent to the user by email or other out-of-band mechanism.
*
* @link https://firebase.google.com/docs/reference/js/firebase.auth.Auth#applyActionCode
* @param code
* @return {Promise.<Null>}
*/
applyActionCode(code: string): Promise<Null> {
return FirebaseAuth.applyActionCode(code);
}
// TODO: https://firebase.google.com/docs/reference/js/firebase.auth.Auth#applyActionCode
// TODO: applyActionCode
// TODO: checkActionCode
/**
* Get the currently signed in user