Setting Super Admin Users
Super Admin Access
Diffgram uses Postgres as the default data storage. The first user that does the installation is by default the super admin. If you want to add another super admin user you need to do it manually on postgres for now. We will be adding new UI sections to manage users across the installation in future releases.
Set existing user as super Admin
You need to have write DB access to your Diffgram installation.
UPDATE userbase SET is_super_admin = true where email = '[email protected]'
Updated over 1 year ago