From d50f9e26afe43ac582427e027b4c30022b3d480b Mon Sep 17 00:00:00 2001 From: Trammell Hudson Date: Fri, 6 May 2022 11:56:39 +0000 Subject: [PATCH] index: account management links --- html/index.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/html/index.html b/html/index.html index 2b08ecd..c3489a6 100644 --- a/html/index.html +++ b/html/index.html @@ -16,3 +16,28 @@ An easy to install set of self-hosted, single-sign-on, open-source services. Source code for building the environments and configuring them: github.com/osresearch/hackerspace-zone There is probably a better way to do this. + +
+ +

Useful links

+ + +

Notes

+* Mastodon doesn't set roles via SSO ([issue 18335](https://github.com/mastodon/mastodon/issues/18335)). To make a user admin from the command line as root requires the username: +
+cd mastodon
+docker-compose exec -T mastodon \
+  bin/tootctl accounts modify USERNAME --role admin
+
+ +* Mobilizon doesn't set roles via SSO ([issue 1105](https://framagit.org/framasoft/mobilizon/-/issues/1105), on roadmap for 2.2). To make a user admin from the command line as root requires the registered email address: +
+cd mobilizon
+docker-compose exec -T mobilizon \
+  bin/mobilizon_ctl users.modify EMAIL --admin
+