Skip to content

Commit 4231406

Browse files
committed
update signin triogger
1 parent 16742ff commit 4231406

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
import { runWith } from '../../services/FirebaseFunctions';
22
import { handler } from './auth_user_sign_up';
33

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+
412
module.exports = runWith({
513
memory: '256MB',
614
timeoutSeconds: 60,
715
})
816
.auth.user()
9-
.beforeCreate(handler);
17+
.onCreate(handler);

0 commit comments

Comments
 (0)