Notifications limit changed to 50

This commit is contained in:
Yegor Vialov 2020-04-12 18:18:46 +00:00
parent 1db0f28576
commit 19d4573844

View File

@ -7,7 +7,7 @@ admin.initializeApp();
var db = admin.firestore();
const MAX_NOTIFICATIONS_PER_DAY = 100;
const MAX_NOTIFICATIONS_PER_DAY = 50;
exports.sendPushNotification = functions.https.onRequest(async (req, res) => {
if (debug()) console.log('Received payload', req.body);