1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 00:20:30 +01:00

Remove calendar and todo from unconditionally loaded integrations (#166951)

Co-authored-by: Artur Pragacz <49985303+arturpragacz@users.noreply.github.com>
This commit is contained in:
Erik Montnemery
2026-03-31 17:39:42 +02:00
committed by GitHub
parent a3f3b0bed4
commit b8652e70e5
2 changed files with 3 additions and 5 deletions

View File

@@ -238,7 +238,9 @@ DEFAULT_INTEGRATIONS = {
"timer", "timer",
# #
# Base platforms: # Base platforms:
*BASE_PLATFORMS, # Note: Calendar and todo are not included to prevent them from registering
# their frontend panels when there are no calendar or todo integrations.
*(BASE_PLATFORMS - {"calendar", "todo"}),
# #
# Integrations providing triggers and conditions for base platforms: # Integrations providing triggers and conditions for base platforms:
"air_quality", "air_quality",

View File

@@ -19,7 +19,6 @@
'blueprint', 'blueprint',
'brands', 'brands',
'button', 'button',
'calendar',
'camera', 'camera',
'climate', 'climate',
'config', 'config',
@@ -94,7 +93,6 @@
'text', 'text',
'time', 'time',
'timer', 'timer',
'todo',
'trace', 'trace',
'tts', 'tts',
'update', 'update',
@@ -129,7 +127,6 @@
'blueprint', 'blueprint',
'brands', 'brands',
'button', 'button',
'calendar',
'camera', 'camera',
'climate', 'climate',
'config', 'config',
@@ -203,7 +200,6 @@
'text', 'text',
'time', 'time',
'timer', 'timer',
'todo',
'trace', 'trace',
'tts', 'tts',
'update', 'update',