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
+