Skip to content

Instantly share code, notes, and snippets.

@geeksilva97
Created December 2, 2019 10:56
Show Gist options
  • Save geeksilva97/0aba911c7a271cbd93d32b60d8d94e73 to your computer and use it in GitHub Desktop.
Save geeksilva97/0aba911c7a271cbd93d32b60d8d94e73 to your computer and use it in GitHub Desktop.
Functions used in Emulators
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