MCPcopy Index your code
hub / github.com/NativeScript/firebase / createUser

Method createUser

apps/demo/src/plugin-demos/firebase-auth.ts:126–137  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

124 }
125
126 createUser() {
127 firebase()
128 .auth()
129 .createUserWithEmailAndPassword(this.email, this.password)
130 .then((user) => {
131 this.set('user', user);
132 user.user.sendEmailVerification();
133 })
134 .catch((e) => {
135 console.error('createUser', e);
136 });
137 }
138
139 loginUser() {
140 firebase()

Callers

nothing calls this directly

Calls 7

firebaseFunction · 0.90
authMethod · 0.80
setMethod · 0.65
sendEmailVerificationMethod · 0.65
thenMethod · 0.45
errorMethod · 0.45

Tested by

no test coverage detected