File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4242from __future__ import annotations
4343
4444SUPPORTED_CDI_VERSIONS = ["3.0"]
45- VERSION = "0.18.6 "
45+ VERSION = "0.18.7 "
4646TELEMETRY = "/telemetry"
4747USER_COUNT = "/users/count"
4848USER_DELETE = "/user/remove"
Original file line number Diff line number Diff line change @@ -78,7 +78,9 @@ <h1 class="title">Module <code>supertokens_python.recipe.dashboard.api.implement
7878 connection_uri = ""
7979 super_tokens_instance = Supertokens.get_instance()
8080 auth_mode = options.config.auth_mode
81- connection_uri = super_tokens_instance.supertokens_config.connection_uri
81+ connection_uri = NormalisedURLDomain(
82+ super_tokens_instance.supertokens_config.connection_uri.split(";")[0]
83+ ).get_as_string_dangerous()
8284
8385 dashboard_path = options.app_info.api_base_path.append(
8486 NormalisedURLPath(DASHBOARD_API)
@@ -165,7 +167,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
165167 connection_uri = ""
166168 super_tokens_instance = Supertokens.get_instance()
167169 auth_mode = options.config.auth_mode
168- connection_uri = super_tokens_instance.supertokens_config.connection_uri
170+ connection_uri = NormalisedURLDomain(
171+ super_tokens_instance.supertokens_config.connection_uri.split(";")[0]
172+ ).get_as_string_dangerous()
169173
170174 dashboard_path = options.app_info.api_base_path.append(
171175 NormalisedURLPath(DASHBOARD_API)
You can’t perform that action at this time.
0 commit comments