README: add delete_user, update metadata

This commit is contained in:
3wc 2022-03-30 13:07:42 +02:00
parent 0841e85a57
commit 4c242219e1
1 changed files with 16 additions and 6 deletions

View File

@ -5,13 +5,13 @@ Wiki and knowledge base for growing teams
<!-- metadata --> <!-- metadata -->
* **Category**: Apps * **Category**: Apps
* **Status**: * **Status**: 1, alpha
* **Image**: [outlinewiki/outline](https://hub.docker.com/r/outlinewiki/outline) * **Image**: [outlinewiki/outline](https://hub.docker.com/r/outlinewiki/outline)
* **Healthcheck**: * **Healthcheck**: No
* **Backups**: * **Backups**: No
* **Email**: * **Email**: No
* **Tests**: * **Tests**: No
* **SSO**: * **SSO**: 3 (OAuth)
<!-- endmetadata --> <!-- endmetadata -->
@ -47,3 +47,13 @@ Avoid the use of quotes (`"..."`) as much as possible, the NodeJS scripts flip o
### Multiple users logging in & generic oauth ### Multiple users logging in & generic oauth
`COMPOSE_FILE="compose.yml:compose.patch.yml"` `COMPOSE_FILE="compose.yml:compose.patch.yml"`
### Deleting a user (e.g. to fix SSO weirdness)
`abra app cmd YOURAPPNAME postgres delete_user <username-to-delete> <username-to-replace>`
Where `<username-to-delete>` is the username of the user to be removed, and
`<username-to-replace>` is the username of another user, to assign documents and
revisions to (instead of deleting them).
_As of 2022-03-30, this requires `abra` RC version, run `abra upgrade --rc`._