Skip to content

Commit

Permalink
update signin triogger
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheidudko committed Jan 8, 2024
1 parent 16742ff commit 4231406
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/functions/triggers/auth_user_sign_up.f.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
import { runWith } from '../../services/FirebaseFunctions';
import { handler } from './auth_user_sign_up';

// needs to upgrade to Firebase Auth with Identity Platform
// module.exports = runWith({
// memory: '256MB',
// timeoutSeconds: 60,
// })
// .auth.user()
// .beforeCreate(handler);

module.exports = runWith({
memory: '256MB',
timeoutSeconds: 60,
})
.auth.user()
.beforeCreate(handler);
.onCreate(handler);

0 comments on commit 4231406

Please sign in to comment.