From 1f7e0936fa2a950af08cceaffac0ab2cb7fdb0c3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 15 Mar 2016 19:21:22 +0100 Subject: [PATCH] Add missing comments --- homeassistant/components/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/api.py b/homeassistant/components/api.py index 65ef2d84cfd..00426e24894 100644 --- a/homeassistant/components/api.py +++ b/homeassistant/components/api.py @@ -83,11 +83,13 @@ def setup(hass, config): hass.http.register_path( 'GET', URL_API_COMPONENTS, _handle_get_api_components) + # /error_log hass.http.register_path('GET', URL_API_ERROR_LOG, _handle_get_api_error_log) hass.http.register_path('POST', URL_API_LOG_OUT, _handle_post_api_log_out) + # /template hass.http.register_path('POST', URL_API_TEMPLATE, _handle_post_api_template)