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 ac6fc38488
commit e38aa6e401
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,7 @@ from authentik.policies.models import Policy, PolicyBindingModel
from authentik.policies.reputation.models import Reputation
from authentik.providers.oauth2.models import AccessToken, AuthorizationCode, RefreshToken
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
IGNORED_MODELS = (
@ -56,6 +56,7 @@ IGNORED_MODELS = (
SCIMGroup,
Reputation,
MobileTransaction,
MobileDeviceToken,
)