Created
December 2, 2019 10:56
-
-
Save geeksilva97/0aba911c7a271cbd93d32b60d8d94e73 to your computer and use it in GitHub Desktop.
Functions used in Emulators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const functions = require('firebase-functions'); | |
const admin = require('firebase-admin'); | |
admin.initializeApp(); | |
exports.addDate = functions.firestore.document('users/{userId}') | |
.onCreate(async (snapshot, context) => { | |
try { | |
return await admin.firestore().doc(snapshot.ref.path) | |
.update({ | |
createdAt: 'today' | |
}); | |
}catch(e) { | |
console.log('erro na execução'); | |
return console.log(e); | |
} | |
}); | |
exports.hello = functions.https.onRequest((req, res) => { | |
res.send('HELLO WORLD'); | |
}); | |
exports.addDateRTDB = functions.database.ref('users/{userId}') | |
.onCreate(async (snapshot, context) => { | |
try { | |
return await admin.database().ref(snapshot.ref.path) | |
.update({ | |
createdAt: 'TODAY' | |
}) | |
}catch(e) { | |
return console.error(e); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment