TwentyT
Twenty5mo ago
8 replies
parvesh

Admin Panel Missing

Hello
I am hosting a self-hosted version but am unable to find the admin panel UI.

ChatGPT tells me that this is the right way":
Open Postgres in the container

docker compose exec db psql -U postgres -d postgres


Give your user the required flags (replace the email)

SELECT id, email, "canImpersonate", "canAccessFullAdminPanel"
FROM core."user"
ORDER BY email;

UPDATE core."user"
SET "canImpersonate" = TRUE,
"canAccessFullAdminPanel" = TRUE
WHERE email = 'you@yourdomain.com';


but I am unsure if this or a setting / flag in .env/docker-compose.yml will see it through.

Can anybody guide?

Thank you in advance

Parvessh
Was this page helpful?