tenants: include all default flows in current_tenant
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		| @ -54,6 +54,9 @@ class CurrentTenantSerializer(PassiveSerializer): | |||||||
|         default=CONFIG.y("footer_links", []), |         default=CONFIG.y("footer_links", []), | ||||||
|     ) |     ) | ||||||
|  |  | ||||||
|  |     flow_authentication = CharField(source="flow_authentication.slug", required=False) | ||||||
|  |     flow_invalidation = CharField(source="flow_invalidation.slug", required=False) | ||||||
|  |     flow_recovery = CharField(source="flow_recovery.slug", required=False) | ||||||
|     flow_unenrollment = CharField(source="flow_unenrollment.slug", required=False) |     flow_unenrollment = CharField(source="flow_unenrollment.slug", required=False) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | |||||||
| @ -18890,6 +18890,12 @@ components: | |||||||
|             name: Documentation |             name: Documentation | ||||||
|           - href: https://goauthentik.io/ |           - href: https://goauthentik.io/ | ||||||
|             name: authentik Website |             name: authentik Website | ||||||
|  |         flow_authentication: | ||||||
|  |           type: string | ||||||
|  |         flow_invalidation: | ||||||
|  |           type: string | ||||||
|  |         flow_recovery: | ||||||
|  |           type: string | ||||||
|         flow_unenrollment: |         flow_unenrollment: | ||||||
|           type: string |           type: string | ||||||
|       required: |       required: | ||||||
|  | |||||||
| @ -1,7 +1,7 @@ | |||||||
| import { t } from "@lingui/macro"; | import { t } from "@lingui/macro"; | ||||||
| import { css, CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; | import { css, CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; | ||||||
| import { until } from "lit-html/directives/until"; | import { until } from "lit-html/directives/until"; | ||||||
| import { EventMatcherPolicyActionEnum, FlowsApi } from "authentik-api"; | import { EventActions, FlowsApi } from "authentik-api"; | ||||||
| import "../../elements/Spinner"; | import "../../elements/Spinner"; | ||||||
| import "../../elements/Expand"; | import "../../elements/Expand"; | ||||||
| import { PFSize } from "../../elements/Spinner"; | import { PFSize } from "../../elements/Spinner"; | ||||||
| @ -189,14 +189,14 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|             return html`<ak-spinner size=${PFSize.Medium}></ak-spinner>`; |             return html`<ak-spinner size=${PFSize.Medium}></ak-spinner>`; | ||||||
|         } |         } | ||||||
|         switch (this.event?.action) { |         switch (this.event?.action) { | ||||||
|         case EventMatcherPolicyActionEnum.ModelCreated: |         case EventActions.ModelCreated: | ||||||
|         case EventMatcherPolicyActionEnum.ModelUpdated: |         case EventActions.ModelUpdated: | ||||||
|         case EventMatcherPolicyActionEnum.ModelDeleted: |         case EventActions.ModelDeleted: | ||||||
|             return html` |             return html` | ||||||
|                 <h3>${t`Affected model:`}</h3> |                 <h3>${t`Affected model:`}</h3> | ||||||
|                 ${this.getModelInfo(this.event.context?.model as EventModel)} |                 ${this.getModelInfo(this.event.context?.model as EventModel)} | ||||||
|                 `; |                 `; | ||||||
|         case EventMatcherPolicyActionEnum.AuthorizeApplication: |         case EventActions.AuthorizeApplication: | ||||||
|             return html`<div class="pf-l-flex"> |             return html`<div class="pf-l-flex"> | ||||||
|                     <div class="pf-l-flex__item"> |                     <div class="pf-l-flex__item"> | ||||||
|                         <h3>${t`Authorized application:`}</h3> |                         <h3>${t`Authorized application:`}</h3> | ||||||
| @ -213,17 +213,17 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                     </div> |                     </div> | ||||||
|                 </div> |                 </div> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.EmailSent: |         case EventActions.EmailSent: | ||||||
|             return html`<h3>${t`Email info:`}</h3> |             return html`<h3>${t`Email info:`}</h3> | ||||||
|                 ${this.getEmailInfo(this.event.context)} |                 ${this.getEmailInfo(this.event.context)} | ||||||
|                 <ak-expand> |                 <ak-expand> | ||||||
|                     <iframe srcdoc=${this.event.context.body}></iframe> |                     <iframe srcdoc=${this.event.context.body}></iframe> | ||||||
|                 </ak-expand>`; |                 </ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.SecretView: |         case EventActions.SecretView: | ||||||
|             return html` |             return html` | ||||||
|                 <h3>${t`Secret:`}</h3> |                 <h3>${t`Secret:`}</h3> | ||||||
|                 ${this.getModelInfo(this.event.context.secret as EventModel)}`; |                 ${this.getModelInfo(this.event.context.secret as EventModel)}`; | ||||||
|         case EventMatcherPolicyActionEnum.SystemException: |         case EventActions.SystemException: | ||||||
|             return html` |             return html` | ||||||
|                 <a |                 <a | ||||||
|                     class="pf-c-button pf-m-primary" |                     class="pf-c-button pf-m-primary" | ||||||
| @ -240,7 +240,7 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                     </div> |                     </div> | ||||||
|                 </div> |                 </div> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.PropertyMappingException: |         case EventActions.PropertyMappingException: | ||||||
|             return html`<div class="pf-l-flex"> |             return html`<div class="pf-l-flex"> | ||||||
|                     <div class="pf-l-flex__item"> |                     <div class="pf-l-flex__item"> | ||||||
|                         <h3>${t`Exception`}</h3> |                         <h3>${t`Exception`}</h3> | ||||||
| @ -252,7 +252,7 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                     </div> |                     </div> | ||||||
|                 </div> |                 </div> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.PolicyException: |         case EventActions.PolicyException: | ||||||
|             return html`<div class="pf-l-flex"> |             return html`<div class="pf-l-flex"> | ||||||
|                     <div class="pf-l-flex__item"> |                     <div class="pf-l-flex__item"> | ||||||
|                         <h3>${t`Binding`}</h3> |                         <h3>${t`Binding`}</h3> | ||||||
| @ -271,7 +271,7 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                     </div> |                     </div> | ||||||
|                 </div> |                 </div> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.PolicyExecution: |         case EventActions.PolicyExecution: | ||||||
|             return html`<div class="pf-l-flex"> |             return html`<div class="pf-l-flex"> | ||||||
|                     <div class="pf-l-flex__item"> |                     <div class="pf-l-flex__item"> | ||||||
|                         <h3>${t`Binding`}</h3> |                         <h3>${t`Binding`}</h3> | ||||||
| @ -299,10 +299,10 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                     </div> |                     </div> | ||||||
|                 </div> |                 </div> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.ConfigurationError: |         case EventActions.ConfigurationError: | ||||||
|             return html`<h3>${this.event.context.message}</h3> |             return html`<h3>${this.event.context.message}</h3> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.UpdateAvailable: |         case EventActions.UpdateAvailable: | ||||||
|             return html`<h3>${t`New version available!`}</h3> |             return html`<h3>${t`New version available!`}</h3> | ||||||
|                 <a |                 <a | ||||||
|                     target="_blank" |                     target="_blank" | ||||||
| @ -311,7 +311,7 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                 </a>`; |                 </a>`; | ||||||
|         // Action types which typically don't record any extra context. |         // Action types which typically don't record any extra context. | ||||||
|         // If context is not empty, we fall to the default response. |         // If context is not empty, we fall to the default response. | ||||||
|         case EventMatcherPolicyActionEnum.Login: |         case EventActions.Login: | ||||||
|             if ("using_source" in this.event.context) { |             if ("using_source" in this.event.context) { | ||||||
|                 return html`<div class="pf-l-flex"> |                 return html`<div class="pf-l-flex"> | ||||||
|                     <div class="pf-l-flex__item"> |                     <div class="pf-l-flex__item"> | ||||||
| @ -321,11 +321,11 @@ new?labels=bug,from_authentik&title=${encodeURIComponent(title)} | |||||||
|                 </div>`; |                 </div>`; | ||||||
|             } |             } | ||||||
|             return this.defaultResponse(); |             return this.defaultResponse(); | ||||||
|         case EventMatcherPolicyActionEnum.LoginFailed: |         case EventActions.LoginFailed: | ||||||
|             return html` |             return html` | ||||||
|                 <h3>${t`Attempted to log in as ${this.event.context.username}`}</h3> |                 <h3>${t`Attempted to log in as ${this.event.context.username}`}</h3> | ||||||
|                 <ak-expand>${this.defaultResponse()}</ak-expand>`; |                 <ak-expand>${this.defaultResponse()}</ak-expand>`; | ||||||
|         case EventMatcherPolicyActionEnum.Logout: |         case EventActions.Logout: | ||||||
|             if (this.event.context === {}) { |             if (this.event.context === {}) { | ||||||
|                 return html`<span>${t`No additional data available.`}</span>`; |                 return html`<span>${t`No additional data available.`}</span>`; | ||||||
|             } |             } | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer