Merge pull request #206 from Coffey-Labs/feat/birthday-calendar
Show birthdays from the address book as a calendar
This commit is contained in:
@@ -135,6 +135,12 @@ export interface Settings {
|
||||
defaultAlertMinutes: number;
|
||||
timeZone: string | null; // null = browser
|
||||
labelsSidebar: boolean;
|
||||
/**
|
||||
* Birthdays from the address book, shown as a calendar of their own.
|
||||
* Off by default: it is derived data, and a calendar that fills itself with
|
||||
* dates nobody put there is a surprise rather than a feature.
|
||||
*/
|
||||
birthdayCalendar: boolean;
|
||||
fontSize: "small" | "medium" | "large";
|
||||
templates: Template[];
|
||||
labels: Label[];
|
||||
@@ -246,6 +252,7 @@ export const DEFAULT_SETTINGS: Settings = {
|
||||
defaultAlertMinutes: 10,
|
||||
timeZone: null,
|
||||
labelsSidebar: true,
|
||||
birthdayCalendar: false,
|
||||
fontSize: "medium",
|
||||
templates: [],
|
||||
labels: [],
|
||||
|
||||
Reference in New Issue
Block a user