root: backport version bump (#11045)

* fix outpost form not loading apps for correct type

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix bug from previous pr

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* release: 2024.6.4

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L.
2024-08-23 16:33:07 +02:00
committed by GitHub
parent 5007476457
commit a6225ad7a7
11 changed files with 12 additions and 12 deletions

View File

@ -105,6 +105,7 @@ export class OutpostForm extends ModelForm<Outpost, string> {
uuid: pk,
});
this.type = o.type || OutpostTypeEnum.Proxy;
this.providers = providerProvider(o.type);
return o;
}
@ -112,7 +113,6 @@ export class OutpostForm extends ModelForm<Outpost, string> {
this.defaultConfig = await new OutpostsApi(
DEFAULT_CONFIG,
).outpostsInstancesDefaultSettingsRetrieve();
this.providers = providerProvider(this.type);
}
getSuccessMessage(): string {

View File

@ -3,7 +3,7 @@ export const SUCCESS_CLASS = "pf-m-success";
export const ERROR_CLASS = "pf-m-danger";
export const PROGRESS_CLASS = "pf-m-in-progress";
export const CURRENT_CLASS = "pf-m-current";
export const VERSION = "2024.6.3";
export const VERSION = "2024.6.4";
export const TITLE_DEFAULT = "authentik";
export const ROUTE_SEPARATOR = ";";