mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
[Bug]: Unable to create more than 1 project #749
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mrtimothyduong on GitHub (Jul 7, 2025).
Where is the problem occurring?
I encountered the problem while using the application (Frontend)
What browsers are you seeing the problem on?
Firefox
Current behavior
Issue: Unable to create more than 1 project
Symptoms: I've been able to create 1 project, but cannot see the 'new project' button from the home screen
Screenshot of my environment:

What I should see:

Environment:
Desired behavior
I should be able to see 'New Project' button from the homepage / fqdn of planka site and use that to create a new project.
Steps to reproduce
Other information
No response
@mrtimothyduong commented on GitHub (Jul 7, 2025):
Updating user_account.role via psql in postgres container
docker compose run --rm planka npm run db:create-admin-userpsql -U postgres plankaSELECT * FROM user_account LIMIT 10;UPDATE user_account SET role = 'admin' WHERE id = '123123INSERTYOURID123123';SELECT * FROM user_account LIMIT 10;Looks like I'll need to add .env values to my docker-compose.yml file and check if it is supported by Pocket-ID
Thanks to this thread for helping out so far #661
@mrtimothyduong commented on GitHub (Jul 7, 2025):
Confirming this is the fix: Add environment variable to planka service
- OIDC_IGNORE_ROLES=trueCause: OIDC applies the ROLE from the Provider but I'm not specifying that from Pocket-ID
Workaround: Ignore the ROLE from IdP (pocket-ID / OIDC) and instead use Planka's authorisation as per their documentation planka/oidc
Steps to resolve:
- OIDC_IGNORE_ROLES=truedocker compose downdocker compose up -d