There was an error while loading. Please reload this page.
1 - Connect to mariadb container using
docker-compose exec db /bin/bash
2 - Then exec :
mariadb -uroot -p
3 - Promote user :
UPDATE multiUsers.`user` SET `_isAdmin` = 1 WHERE id = <USER ID>
If you want to revock the Admin status execute stape 1 and 2 ans then :
UPDATE multiUsers.`user` SET `_isAdmin` = 0 WHERE id = <USER ID>