diff options
author | 2022-11-25 07:44:27 -0800 | |
---|---|---|
committer | 2022-11-25 16:44:27 +0100 | |
commit | 9e18c7f996b035ce834439a8cf2e866d38fd4037 (patch) | |
tree | 483034c6486f02a429b094f25f56638f7eee8a6c /docs/admin | |
parent | [chore] Fix frogend admin emoji patch (#1148) (diff) | |
download | gotosocial-9e18c7f996b035ce834439a8cf2e866d38fd4037.tar.xz |
[bugfix] Change emailVerified to true for admin account create (#1140)
The NewSignup method was already being called with
requireApproval=false, but it had emailVerified=false as well, which
meant that it was required to use the `admin account confirm` command
to verify the email before the newly-created user could log in.
I think that was probably an oversight; effectively it did require
approval anyway. Changing emailVerified to true allows you to just
create the account and log in immediately, reducing the opportunity
for manual error to sneak in.
Also updated the docs to remove the mention of needing to confirm new
accounts. However, I've left the confirmation command alone because I
think once we have web signups, it will be needed in that context.
Diffstat (limited to 'docs/admin')
-rw-r--r-- | docs/admin/cli.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/admin/cli.md b/docs/admin/cli.md index cc35378f1..e56a0de39 100644 --- a/docs/admin/cli.md +++ b/docs/admin/cli.md @@ -68,7 +68,7 @@ gotosocial admin account create \ ### gotosocial admin account confirm -This command can be used to confirm a user+account on your instance, allowing them to log in and use the account. +This command can be used to confirm a user+account on your instance, allowing them to log in and use the account. Note that if the account was created using `admin account create` this is not necessary. `gotosocial admin account confirm --help`: |