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>
42
42
from __future__ import annotations
43
43
44
44
SUPPORTED_CDI_VERSIONS = ["3.0"]
45
- VERSION = "0.18.6 "
45
+ VERSION = "0.18.7 "
46
46
TELEMETRY = "/telemetry"
47
47
USER_COUNT = "/users/count"
48
48
USER_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
78
78
connection_uri = ""
79
79
super_tokens_instance = Supertokens.get_instance()
80
80
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()
82
84
83
85
dashboard_path = options.app_info.api_base_path.append(
84
86
NormalisedURLPath(DASHBOARD_API)
@@ -165,7 +167,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
165
167
connection_uri = ""
166
168
super_tokens_instance = Supertokens.get_instance()
167
169
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()
169
173
170
174
dashboard_path = options.app_info.api_base_path.append(
171
175
NormalisedURLPath(DASHBOARD_API)
You can’t perform that action at this time.
0 commit comments