Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions homeassistant/components/mealie/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
}
)

EXAMPLE_URL = "http://192.168.1.123:1234"


class MealieConfigFlow(ConfigFlow, domain=DOMAIN):
"""Mealie config flow."""
Expand Down Expand Up @@ -93,6 +95,7 @@ async def async_step_user(
step_id="user",
data_schema=USER_SCHEMA,
errors=errors,
description_placeholders={"example_url": EXAMPLE_URL},
)

async def async_step_reauth(
Expand Down Expand Up @@ -123,6 +126,7 @@ async def async_step_reauth_confirm(
step_id="reauth_confirm",
data_schema=REAUTH_SCHEMA,
errors=errors,
description_placeholders={"example_url": EXAMPLE_URL},
)

async def async_step_reconfigure(
Expand Down Expand Up @@ -151,6 +155,7 @@ async def async_step_reconfigure(
step_id="reconfigure",
data_schema=USER_SCHEMA,
errors=errors,
description_placeholders={"example_url": EXAMPLE_URL},
)

async def async_step_hassio(
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/mealie/strings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"common": {
"data_description_host": "The URL of your Mealie instance, for example, http://192.168.1.123:1234",
"data_description_host": "The URL of your Mealie instance, for example, {example_url}.",
"data_description_api_token": "The API token of your Mealie instance from your user profile within Mealie.",
"data_description_verify_ssl": "Should SSL certificates be verified? This should be off for self-signed certificates."
},
Expand Down
Loading