website/docs: fix api browser references (#9577)

* website/docs: fix api browser references

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* don't attempt to correct generated docs

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix?

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L
2024-05-06 12:30:43 +02:00
committed by GitHub
parent 06d1062423
commit 0a312821ee
4 changed files with 4 additions and 3 deletions

View File

@ -77,7 +77,7 @@ return {
"quota": user.group_attributes().get("nextcloud_quota", None),
# To connect an already existing user, set the "nextcloud_user_id" property in the
# user's attributes to the username of the corresponding user on Nextcloud.
"user_id": user.attributes.get("nextcloud_user_id", user.uuid),
"user_id": user.attributes.get("nextcloud_user_id", str(user.uuid)),
}
```