From f23fcb383df57820d6ba6815bdcc9b2dde4a039c Mon Sep 17 00:00:00 2001 From: yalh76 Date: Mon, 6 Apr 2020 20:39:56 +0200 Subject: [PATCH 1/2] fix documentation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9640f6..3707b46 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ You can make users **moderators**. They will then be able to **delete any post** ## Documentation - * Official documentation: https://git.pleroma.social/pleroma/pleroma/wikis/home + * Official documentation: https://docs.pleroma.social/ * Yunohost apps documentation: https://yunohost.org/#/app_pleroma ## YunoHost specific features From cc0d9ffd5f2499076f175215460d3fd55e1af258 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Mon, 6 Apr 2020 21:58:09 +0200 Subject: [PATCH 2/2] Fix #113 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3707b46..c5ced37 100644 --- a/README.md +++ b/README.md @@ -49,13 +49,13 @@ Go to **cd /var/www/pleroma/pleroma**. **Run:** - $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod mix pleroma.user new ) + $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user new ) ### Password reset **Run:** - $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod mix pleroma.user reset_password ) + $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user reset_password ) This will generate a **password reset link** that you can then send to the user. @@ -65,7 +65,7 @@ You can make users **moderators**. They will then be able to **delete any post** **Run:** - $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod mix pleroma.user set --[no-]admin ) + $ ( cd /var/www/pleroma/pleroma && sudo -u pleroma MIX_ENV=prod ./bin/pleroma_ctl user set --[no-]admin ) **--admin** option will **make the user moderator** and **--no-admin** will **take away the moderator privileges** from the user.