Skip to content

Diaspora

Boris Rybalkin edited this page Nov 17, 2020 · 5 revisions

Admin rights

Currentrly Diaspora does not support LDAP so we cannot allow device user to connect and be admin.

You have create a user yourself and make it an admin for now.

To make youself an admin you need to run diaspora console:

snap run diaspora.console

Do not worry about logging error.

Then run one or more of these commands with your username to add needed roles:

Role.add_admin User.where(username: "the_username").first.person
        
Role.add_moderator User.where(username: "the_username").first.person

Role.add_spotlight User.where(username: "the_username").first.person

More info: https://wiki.diasporafoundation.org/FAQ_for_pod_maintainers#What_are_roles_and_how_do_I_use_them.3F_.2F_Make_yourself_an_admin_or_assign_moderators

Restart diaspora

snap restart diaspora
Clone this wiki locally