You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
block_execution=models.BooleanField(default=False, help_text=_("Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion."))
270
270
force_password_reset=models.BooleanField(default=False, help_text=_("Forces this user to reset their password on next login."))
271
+
token_last_reset=models.DateTimeField(null=True, blank=True, help_text=_("Timestamp of the most recent API token reset for this user."))
272
+
password_last_reset=models.DateTimeField(null=True, blank=True, help_text=_("Timestamp of the most recent password reset for this user."))
0 commit comments