We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16742ff commit 4231406Copy full SHA for 4231406
src/functions/triggers/auth_user_sign_up.f.ts
@@ -1,9 +1,17 @@
1
import { runWith } from '../../services/FirebaseFunctions';
2
import { handler } from './auth_user_sign_up';
3
4
+// needs to upgrade to Firebase Auth with Identity Platform
5
+// module.exports = runWith({
6
+// memory: '256MB',
7
+// timeoutSeconds: 60,
8
+// })
9
+// .auth.user()
10
+// .beforeCreate(handler);
11
+
12
module.exports = runWith({
13
memory: '256MB',
14
timeoutSeconds: 60,
15
})
16
.auth.user()
- .beforeCreate(handler);
17
+ .onCreate(handler);
0 commit comments