Add missing comments
This commit is contained in:
parent
d28116f2bf
commit
1f7e0936fa
1 changed files with 2 additions and 0 deletions
|
@ -83,11 +83,13 @@ def setup(hass, config):
|
||||||
hass.http.register_path(
|
hass.http.register_path(
|
||||||
'GET', URL_API_COMPONENTS, _handle_get_api_components)
|
'GET', URL_API_COMPONENTS, _handle_get_api_components)
|
||||||
|
|
||||||
|
# /error_log
|
||||||
hass.http.register_path('GET', URL_API_ERROR_LOG,
|
hass.http.register_path('GET', URL_API_ERROR_LOG,
|
||||||
_handle_get_api_error_log)
|
_handle_get_api_error_log)
|
||||||
|
|
||||||
hass.http.register_path('POST', URL_API_LOG_OUT, _handle_post_api_log_out)
|
hass.http.register_path('POST', URL_API_LOG_OUT, _handle_post_api_log_out)
|
||||||
|
|
||||||
|
# /template
|
||||||
hass.http.register_path('POST', URL_API_TEMPLATE,
|
hass.http.register_path('POST', URL_API_TEMPLATE,
|
||||||
_handle_post_api_template)
|
_handle_post_api_template)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue