parent
a78b5413b1
commit
58055aff87
@ -0,0 +1,14 @@
|
||||
from homeassistant import config_entries
|
||||
from .const import DOMAIN
|
||||
|
||||
class GeorideConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||||
async def async_step_user(self, info):
|
||||
if info is not None:
|
||||
# process info
|
||||
|
||||
return self.async_show_form(
|
||||
step_id='user',
|
||||
data_schema=vol.Schema({
|
||||
vol.Required('password'): str
|
||||
})
|
||||
)
|
@ -0,0 +1,7 @@
|
||||
""" Georide const file """
|
||||
|
||||
DOMAIN = "georide"
|
||||
CONF_EMAIL = "email"
|
||||
CONF_PASSWORD = "password"
|
||||
|
||||
TRACKER_ID = "trackerId"
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"domain": "georide",
|
||||
"name": "Georide",
|
||||
"config_flow": false,
|
||||
"config_flow": true,
|
||||
"documentation": "https://git.tontontux.fr/mduval/GeorideHA",
|
||||
"requirements": [
|
||||
"georideapilib==0.1.0"
|
||||
],
|
||||
"dependencies": [
|
||||
"urllib3",
|
||||
"urllib3, georideapilib",
|
||||
],
|
||||
"codeowners": ["ptimatth"]
|
||||
}
|
Loading…
Reference in new issue