feat: enable reminders by default (#133)

This commit is contained in:
2026-06-14 22:38:26 +01:00
committed by GitHub
parent 6785503ff9
commit 9836d7499b
3 changed files with 17 additions and 5 deletions

View File

@@ -84,7 +84,9 @@ const ONE_DAY_MS = 24 * 60 * 60 * 1000
* It owns recurrence expansion, edit-scope semantics, and feed item signals.
*/
export class ReminderSource implements FeedSource<ReminderFeedItem> {
readonly id = "freya.reminders"
static readonly id = "freya.reminders"
readonly id = ReminderSource.id
private readonly storage: ReminderStorage
private readonly lookAheadMs: number