Notifications limit changed to 50
This commit is contained in:
parent
1db0f28576
commit
19d4573844
@ -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);
|
||||
|
Reference in New Issue
Block a user