Last active
June 6, 2020 04:24
-
-
Save maail/a5007298e2eeb726b565b819851757ed to your computer and use it in GitHub Desktop.
On document create Telegram
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
/// on post created | |
exports.documentCreate = functions.firestore | |
.document('document/{documentId}') | |
.onCreate((change, context) => { | |
bot.telegram.sendMessage(functions.config().bot.chat, '📄 New post created') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment