Skip to content

Commit

Permalink
feat(authz): allow creation of legacy server endpoint (#257)
Browse files Browse the repository at this point in the history
Temporarily allows for the legacy endpoint. This will be removed without notice in the 0.10.0 rel

Signed-off-by: gietschess <[email protected]>
  • Loading branch information
gietschess authored Aug 16, 2024
1 parent 20da5c6 commit 22638f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.9.3
version: 0.9.4
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
4 changes: 3 additions & 1 deletion charts/authelia/templates/_authz.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
{{- "ext-authz" }}
{{- else if eq .Implementation "ForwardAuth" }}
{{- "forward-auth" }}
{{- else if eq .Implementation "Legacy" }}
{{- "legacy" }}
{{- end }}
{{- end -}}

Expand All @@ -33,5 +35,5 @@
{{- end -}}

{{- define "authelia.authz.implementations" -}}
{{ (list "AuthRequest" "ExtAuthz" "ForwardAuth") | toJson }}
{{ (list "AuthRequest" "ExtAuthz" "ForwardAuth" "Legacy") | toJson }}
{{- end -}}

0 comments on commit 22638f6

Please sign in to comment.