-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: notification test #30
base: main
Are you sure you want to change the base?
Conversation
functions/src/notifications/day.ts
Outdated
import * as admin from 'firebase-admin'; | ||
|
||
export const dayNumberNotification = functions.pubsub.schedule('every day 08:30').timeZone('UTC-5').onRun((context) => { | ||
const searchString = 'Day '; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No semicolons
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
functions/src/notifications/day.ts
Outdated
|
||
import * as admin from 'firebase-admin'; | ||
|
||
export const dayNumberNotification = functions.pubsub.schedule('every day 08:30').timeZone('UTC-5').onRun((context) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
timezone: America/Toronto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
Pull Request Description
Code for notification to show day number added