🩹 Fixes broken links in docs

This commit is contained in:
Alicia Sykes
2021-08-22 19:19:30 +01:00
parent 5bdf2e4692
commit 31da34386a
3 changed files with 11 additions and 10 deletions

View File

@@ -57,6 +57,8 @@ Alternatively, as a workaround, you have several options:
In V 1.6.5 an update was made that in the future will become a breaking change. You will need to update you config to reflect this before V 2.0.0 is released. In the meantime, your previous config will continue to function normally, but you will see a validation warning. The change means that the structure of the `appConfig.auth` object is now an object, which has a `users` property.
For more info, see [this announcement](https://github.com/Lissy93/dashy/discussions/177).
You can fix this by replacing:
```yaml
@@ -68,11 +70,10 @@ auth:
with
```yaml
appConfig:
auth:
users:
- user: xxx
hash: xxx
auth:
users:
- user: xxx
hash: xxx
```
---