diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-06-19 20:18:37 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-06-19 20:18:37 +0200 |
commit | 6a871bc794def553b54a58fc8314edd7a0ea57e0 (patch) | |
tree | bb20b620703c9598f23ec0cb7ca3e720ec2e5b37 /doc | |
parent | 4ca35b938e6ccd07e47b04869fbe30e9109bcbe4 (diff) | |
download | fietsboek-6a871bc794def553b54a58fc8314edd7a0ea57e0.tar.gz fietsboek-6a871bc794def553b54a58fc8314edd7a0ea57e0.tar.bz2 fietsboek-6a871bc794def553b54a58fc8314edd7a0ea57e0.zip |
add fietsctl modify --set-email
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/fietsctl.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/man/fietsctl.rst b/doc/man/fietsctl.rst index 67cbed4..5319a42 100644 --- a/doc/man/fietsctl.rst +++ b/doc/man/fietsctl.rst @@ -130,7 +130,7 @@ MODIFYING USERS .. code-block:: text - fietsctl user modify [-c CONFIG] [-i/--id ID] [-e/--email EMAIL] [--admin/--no-admin] [--verified/--no-verified] + fietsctl user modify [-c CONFIG] [-i/--id ID] [-e/--email EMAIL] [--admin/--no-admin] [--verified/--no-verified] [--set-email EMAIL] Modifies a user. This can currently be used to set the admin and verification status of a user. If you want to change the password, use ``fietsctl user @@ -142,6 +142,11 @@ If you do not specifiy either ``--admin`` or ``--no-admin``, then the current value of the user is not changed. The same goes for ``--verified`` and ``--no-verified``, if neither is given, the current value is not changed. +To change a user's email address, you can specify the ``--set-email`` option +with the desired new email address. Note that — just like with adding users — +no email verification is taking place, so be careful when using this. The new +email address is automatically registered as verified. + CHANGING USER PASSWORDS ####################### |