marketCloseEmails: every hour

This commit is contained in:
mantikoros 2022-02-17 12:13:59 -06:00
parent 69ff2c4f9a
commit 3085493882

View File

@ -6,7 +6,7 @@ import { getPrivateUser, getUserByUsername } from './utils'
import { sendMarketCloseEmail } from './emails'
export const marketCloseEmails = functions.pubsub
.schedule('every 2 minutes')
.schedule('every hour')
.onRun(async () => {
await sendMarketCloseEmails()
})