don't log mobiledevicetoken

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-12-18 13:19:25 +01:00
parent e496d86e2b
commit 1e81490c93
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ from authentik.policies.models import Policy, PolicyBindingModel
from authentik.policies.reputation.models import Reputation from authentik.policies.reputation.models import Reputation
from authentik.providers.oauth2.models import AccessToken, AuthorizationCode, RefreshToken from authentik.providers.oauth2.models import AccessToken, AuthorizationCode, RefreshToken
from authentik.providers.scim.models import SCIMGroup, SCIMUser from authentik.providers.scim.models import SCIMGroup, SCIMUser
from authentik.stages.authenticator_mobile.models import MobileTransaction from authentik.stages.authenticator_mobile.models import MobileDeviceToken, MobileTransaction
from authentik.stages.authenticator_static.models import StaticToken from authentik.stages.authenticator_static.models import StaticToken
IGNORED_MODELS = ( IGNORED_MODELS = (
@ -58,6 +58,7 @@ IGNORED_MODELS = (
Reputation, Reputation,
ConnectionToken, ConnectionToken,
MobileTransaction, MobileTransaction,
MobileDeviceToken,
) )