Skip to content

Commit 93c46e8

Browse files
committed
adding dev-v0.29.1 tag to this commit to ensure building
1 parent e1a858d commit 93c46e8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

html/supertokens_python/constants.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4343
from __future__ import annotations
4444

4545
SUPPORTED_CDI_VERSIONS = [&#34;5.2&#34;]
46-
VERSION = &#34;0.29.0&#34;
46+
VERSION = &#34;0.29.1&#34;
4747
TELEMETRY = &#34;/telemetry&#34;
4848
USER_COUNT = &#34;/users/count&#34;
4949
USER_DELETE = &#34;/user/remove&#34;

html/supertokens_python/recipe/totp/api/remove_device.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ <h1 class="title">Module <code>supertokens_python.recipe.totp.api.remove_device<
6363

6464
session = await get_session(
6565
api_options.request,
66-
override_global_claim_validators=lambda _, __, ___: [],
66+
override_global_claim_validators=lambda global_claim_validators, __, ___: [
67+
gcv for gcv in global_claim_validators if gcv.id == &#34;st-mfa&#34;
68+
],
6769
session_required=True,
6870
user_context=user_context,
6971
)

0 commit comments

Comments
 (0)