mirror of https://github.com/home-assistant/core
14 lines
329 B
Python
14 lines
329 B
Python
"""Constants for the Local Calendar integration."""
|
|
|
|
DOMAIN = "local_calendar"
|
|
|
|
CONF_CALENDAR_NAME = "calendar_name"
|
|
CONF_ICS_FILE = "ics_file"
|
|
CONF_IMPORT = "import"
|
|
CONF_STORAGE_KEY = "storage_key"
|
|
|
|
ATTR_CREATE_EMPTY = "create_empty"
|
|
ATTR_IMPORT_ICS_FILE = "import_ics_file"
|
|
|
|
STORAGE_PATH = ".storage/local_calendar.{key}.ics"
|