Skip to content

Commit

Permalink
Frontend: deprecate extra_html_url
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten committed Jul 14, 2020
1 parent f0916ae commit a616427
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion homeassistant/components/frontend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@
CONFIG_SCHEMA = vol.Schema(
{
DOMAIN: vol.Schema(
cv.deprecated(CONF_EXTRA_HTML_URL, invalidation_version="0.115"),
cv.deprecated(CONF_EXTRA_HTML_URL_ES5, invalidation_version="0.115"),
{
vol.Optional(CONF_FRONTEND_REPO): cv.isdir,
vol.Optional(CONF_THEMES): vol.Schema(
Expand All @@ -100,7 +102,7 @@
# We no longer use these options.
vol.Optional(CONF_EXTRA_HTML_URL_ES5): cv.match_all,
vol.Optional(CONF_JS_VERSION): cv.match_all,
}
},
)
},
extra=vol.ALLOW_EXTRA,
Expand Down

0 comments on commit a616427

Please sign in to comment.