Jens L.

Results 476 comments of Jens L.

oh if you want the name to pre prefilled, then the option has to be enabled, and the placeholder should be set to something like ```python try: return user.name except:...

That is what the default should do https://github.com/goauthentik/authentik/blob/main/blueprints/default/30-flow-default-user-settings-flow.yaml#L28, however this should be fixed by 2022.9 which is out soon so I'll close this for now

So the backend design supports very fine grained permissions on a user level (this is currently used by the Outpost service account, that can only access the things it needs...

The browser cache shouldn't have to be cleared manually. authentik sets these headers on static files: https://github.com/goauthentik/authentik/blob/main/internal/web/static.go#L61 This indicates that whenever the `X-authentik-version` header changes (which it does after an...

The simplest implementation of this would be - adding an option in the identification stage to show a remember me option - add a field for a separate session timeout...

Not currently, possible ways to implement this (applies to both application icon and flow background): - add icon_url as a normal attribute of the applications and only use the `set_icon`...

I kinda don't want to allow arbitrary HTTP requests since that sounds like an easy way to allow SSRF, but on the other hand if a user has enough authorization...

Since allauth doesn't seem to support generic OpenID Connect (they only support OpenID), you can use the GitHub compatibility layer (https://goauthentik.io/docs/providers/oauth2/#github-compatibility) So for allauth you'd have to set `GITHUB_URL` set...

The initial issue is fixed with the commit above, I was not able to reproduce the second issue yet

I created an Application with an OAuth2 provider attached with all default settings and didnt get an error the 2nd stack trace is caused by the OAuth2 Provider using lazy-translated...