Conversation
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-integrations ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #18424 +/- ##
==========================================
+ Coverage 92.78% 93.03% +0.25%
==========================================
Files 911 911
Lines 49848 49848
==========================================
+ Hits 46250 46375 +125
+ Misses 3598 3473 -125
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
19db12a to
f4ecc34
Compare
authentik translations instructionsThanks for your pull request! authentik translations are handled using Transifex. Please edit translations over there and they'll be included automatically. |
f4ecc34 to
a1cf28f
Compare
| export function brand(): Promise<CurrentBrand> { | ||
| if (!globalBrandPromise) { | ||
| globalBrandPromise = new CoreApi(DEFAULT_CONFIG) | ||
| .coreBrandsCurrentRetrieve() | ||
| .then((brand) => { | ||
| brandSetFavicon(brand); | ||
| brandSetLocale(brand); | ||
| return brand; | ||
| }); | ||
| } | ||
| return globalBrandPromise; | ||
| } | ||
|
|
There was a problem hiding this comment.
Seems to be unused for quite some time?
kensternberg-authentik
left a comment
There was a problem hiding this comment.
Solid. Found a typo in a comment. :-)
| // #region Attribute Observation | ||
|
|
||
| /** | ||
| * Synchronizes changes the document's `lang` attribute to the locale context. |
There was a problem hiding this comment.
"changes to" or "changes in", no?
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-dea6e5d81a0f42215cc0e81083f6d1645505e94f
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-dea6e5d81a0f42215cc0e81083f6d1645505e94fAfterwards, run the upgrade commands from the latest release notes. |
c3d9ef9 to
dea6e5d
Compare
|
Resolved via #18426 |
Details
This PR replaces
<ak-locale-context>with a Lit Context, allowing for faster locale detection, reading of the current locale, and fewer re-renders between locale changes.Related