Send the records on this day email at 7am

This commit is contained in:
Claudio Ortolina
2026-03-06 08:05:36 +00:00
parent c3cb510892
commit 99e30d5fdf
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -41,8 +41,8 @@ config :music_library, Oban,
{"0 8 1 * *", MusicLibrary.Worker.ArtistRefreshAllMusicBrainzData},
{"0 9 1 * *", MusicLibrary.Worker.ArtistRefreshAllDiscogsData},
{"0 10 1 * *", MusicLibrary.Worker.ArtistRefreshAllWikipediaData},
# daily at 8 am
{"0 8 * * *", MusicLibrary.Worker.SendRecordsOnThisDayEmail}
# daily at 7 am
{"0 7 * * *", MusicLibrary.Worker.SendRecordsOnThisDayEmail}
]}
]
+1 -1
View File
@@ -201,7 +201,7 @@ stubbed via `Req.Test` (configured in `config/test.exs`).
| Monthly 1st, 8 AM | `ArtistRefreshAllMusicBrainzData` | music_brainz |
| Monthly 1st, 9 AM | `ArtistRefreshAllDiscogsData` | discogs |
| Monthly 1st, 10 AM | `ArtistRefreshAllWikipediaData` | wikipedia |
| Daily 8 AM | `SendRecordsOnThisDayEmail` | default |
| Daily 7 AM | `SendRecordsOnThisDayEmail` | default |
---