Alexis

Results 6 comments of Alexis

This might be a stretch but the ability to create a tree structure, with both entries and sub-menus (like in regedit) would be amazing!

Hi! I had the say issue, here is my fix: In `src/utils/Auth.js` fix the `isUserAdmin` function as follows: ```js export const isUserAdmin = () => { if (isOidcEnabled()) { const...

Ending up cleaning my code and implementing a proper fix, which addresses the main issue: OIDC users where ignored by the `getUser` function, which lead to them being ignored by...

Hi @herbeauslese The point of OIDC is to consolidate all your user management, including admins, in one spot. To this end, what I would recommend, and how it _should_ be...

Hi Saw your edit 2. This is the return of the OIDC authentification. Your user is noted as "admin: false". And indeed if you do not have admin rights, this...

From the `admin: true` in your console, you are now properly recognized as an admin by Dashy, enabling all the admin features. > Now it seems to work That's great!...