Content
You are here:
Admin-privileges lost after update to 12.1.4
Added by Tri Tri over 2 years ago
Hi @all,
after updating our local installation to 12.1.4, all admin-accounts lost their privileges/ demoted to usual user-accounts.
- no access to the administration-page (link does not appear in user menu),
- no "update-status" button on start-page
- limited view on project-dropdown
- ...
the login works properly; we did not change the login-mode.
database/ users-table: the admin-column is still set to "true", where it should be true
Any help is appreciated.
Kind regards,
Tristan
Replies (1)
Shout out to a colleague who did find a workaround to restore the admin-privileges:
openproject run console
user = User.find_by(login: 'my@placeholder.de')
user.admin = true
user.save!