Skip to content
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

Bugfix: Add new IDP check to auditor list to activate it #40

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions kcwarden/auditors/idp_auditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
)
from kcwarden.auditors.idp.identity_provider_with_one_time_sync import IdentityProviderWithOneTimeSync
from kcwarden.auditors.idp.oidc_identity_provider_without_pkce import OIDCIdentityProviderWithoutPKCE
from kcwarden.auditors.idp.identity_provider_with_signature_verification_disabled import (
IdentityProviderWithSignatureVerificationDisabled,
)

# TODO Refactor this bit out of here to get rid of this file.
# Idea: Rely on the auto-import logic that will be the basis for the plugin infrastructure?
Expand All @@ -12,4 +15,5 @@
OIDCIdentityProviderWithoutPKCE,
IdentityProviderWithOneTimeSync,
IdentityProviderWithMappersWithoutForceSyncMode,
IdentityProviderWithSignatureVerificationDisabled,
]