Skip to content

Commit

Permalink
chore: bump MAX_RESULTS, MINIMUM_NOTIFICATION_DELAY_MINUTES (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
Janik Ga authored Mar 24, 2022
1 parent cd0db6c commit da15983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firebase/functions/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const SMTP_PASSWORD = envVariables?.smtp?.password;
const SENDER_EMAIL = '[email protected]';

const REGION_EUROPE_WEST_1 = 'europe-west1';
const MAX_RESULTS = 100;
const MAX_RESULTS = 200;
const MAPS_ENABLED = true;
// How long we wait before we send email notifications after a person posted a help request
const MINIMUM_NOTIFICATION_DELAY_MINUTES = 20;
const MINIMUM_NOTIFICATION_DELAY_MINUTES = 30;
const SEND_EMAILS = SMTP_USER && SMTP_PASSWORD;
const sendingMailsDisabledLogMessage = 'Sending emails is currently disabled.';
const EMAIL_NOTIFICATION_AUDIENCE_SIZE_SANITY_CHECK = 35_000;
Expand Down

0 comments on commit da15983

Please sign in to comment.