react-native-firebase/lib/modules/auth/providers/EmailAuthProvider.js

28 lines
538 B
JavaScript
Raw Normal View History

2017-11-17 14:22:46 +00:00
/**
* @flow
* EmailAuthProvider representation wrapper
*/
2018-01-24 09:46:39 +00:00
import type { AuthCredential } from '../types';
2017-11-23 17:29:40 +00:00
const providerId = 'password';
export default class EmailAuthProvider {
constructor() {
2018-01-25 18:25:39 +00:00
throw new Error(
'`new EmailAuthProvider()` is not supported on the native Firebase SDKs.'
);
}
2017-11-17 14:22:46 +00:00
static get PROVIDER_ID(): string {
return providerId;
}
2017-11-17 14:22:46 +00:00
static credential(email: string, password: string): AuthCredential {
return {
token: email,
secret: password,
providerId,
};
}
}