Это единственный код, который у меня сейчас есть в index.js.
Код:
Код: Выделить всё
import { onRequest, onCall } from 'firebase-functions/v2/https';
import { onDocumentCreated } from 'firebase-functions/v2/firestore';
import { initializeApp } from 'firebase-admin/app';
import { getFirestore } from 'firebase-admin/firestore';
import * as functions from 'firebase-functions';
initializeApp();
const db = getFirestore();
export const sendWelcomeEmail = functions.auth.user().onCreate((user) => {
console.log("123")
});
Подробнее здесь: https://stackoverflow.com/questions/798 ... reate-user
Мобильная версия