Make inlined JSON example valid

This commit is contained in:
Robbie Trencheny 2019-04-10 21:58:50 -07:00
parent f33bf718c7
commit f5c677146a
No known key found for this signature in database
GPG Key ID: 1E236BB235BF0021

View File

@ -78,20 +78,16 @@ The result payload likes
"result": { "result": {
"id": "USER_ID", "id": "USER_ID",
"name": "John Doe", "name": "John Doe",
"is_owner': true, "is_owner": true,
"credentials": [ "credentials": [{
{
"auth_provider_type": "homeassistant", "auth_provider_type": "homeassistant",
"auth_provider_id": null "auth_provider_id": null
} }],
], "mfa_modules": [{
"mfa_modules": [
{
"id": "totp", "id": "totp",
"name": "TOTP", "name": "TOTP",
"enabled": true, "enabled": true
} }]
]
} }
} }