-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
enterprise/providers: WS-Federation #19583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for authentik-storybook 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-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
474fa5a to
0e4734d
Compare
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #19583 +/- ##
==========================================
- Coverage 93.28% 93.24% -0.05%
==========================================
Files 949 959 +10
Lines 52131 52481 +350
==========================================
+ Hits 48633 48935 +302
- Misses 3498 3546 +48
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet#1258 robrichards/xmlseclibs#28 xmlsec/python-xmlsec#196 Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
0e4734d to
38d74fa
Compare
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-70b60d8ef2cfc62e199ddcf6a474d8d1cc077821
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-70b60d8ef2cfc62e199ddcf6a474d8d1cc077821Afterwards, run the upgrade commands from the latest release notes. |
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io> # Conflicts: # web/src/admin/providers/saml/SAMLProviderForm.ts
21caa66 to
70b60d8
Compare
| @property({ type: Number }) | ||
| providerID?: number; | ||
|
|
||
| @state() | ||
| provider?: WSFederationProvider; | ||
|
|
||
| @state() | ||
| preview?: SAMLPreviewAttribute; | ||
|
|
||
| @state() | ||
| metadata?: SAMLMetadata; | ||
|
|
||
| @state() | ||
| signer: CertificateKeyPair | null = null; | ||
|
|
||
| @state() | ||
| verifier: CertificateKeyPair | null = null; | ||
|
|
||
| @state() | ||
| previewUser?: User; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| @property({ type: Number }) | |
| providerID?: number; | |
| @state() | |
| provider?: WSFederationProvider; | |
| @state() | |
| preview?: SAMLPreviewAttribute; | |
| @state() | |
| metadata?: SAMLMetadata; | |
| @state() | |
| signer: CertificateKeyPair | null = null; | |
| @state() | |
| verifier: CertificateKeyPair | null = null; | |
| @state() | |
| previewUser?: User; | |
| @property({ type: Number }) | |
| public providerID: number | null = null; | |
| @state() | |
| protected provider: WSFederationProvider | null = null; | |
| @state() | |
| protected preview: SAMLPreviewAttribute | null = null; | |
| @state() | |
| protected metadata: SAMLMetadata | null = null; | |
| @state() | |
| protected signer: CertificateKeyPair | null = null; | |
| @state() | |
| protected verifier: CertificateKeyPair | null = null; | |
| @state() | |
| protected previewUser: User | null = null; |
| previewUser?: User; | ||
|
|
||
| static styles: CSSResult[] = [ | ||
| PFBase, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| PFBase, |
| }); | ||
| } | ||
|
|
||
| willUpdate(changedProperties: PropertyValues<this>) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| willUpdate(changedProperties: PropertyValues<this>) { | |
| protected override willUpdate(changedProperties: PropertyValues<this>) { |
yep
to anyone reviewing this, everything in the
schemas/folder can be skipped as these are just mirrors of .xsd filescloses #3154