Skip to content

Commit cbcbe20

Browse files
committed
fixes dashboard bug
1 parent 3a9347c commit cbcbe20

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [unreleased]
1010

11+
## [0.18.1] - 2023-12-01
12+
13+
- Fixes bug in dashboard recipe where we did not expose `USER_EMAIL_VERIFY_TOKEN_API` API.
14+
1115
## [0.18.0] - 2023-11-25
1216

1317
### Added

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
setup(
7272
name="supertokens_python",
73-
version="0.18.0",
73+
version="0.18.1",
7474
author="SuperTokens",
7575
license="Apache 2.0",
7676
author_email="[email protected]",

supertokens_python/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from __future__ import annotations
1515

1616
SUPPORTED_CDI_VERSIONS = ["3.0"]
17-
VERSION = "0.18.0"
17+
VERSION = "0.18.1"
1818
TELEMETRY = "/telemetry"
1919
USER_COUNT = "/users/count"
2020
USER_DELETE = "/user/remove"

supertokens_python/recipe/dashboard/recipe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ def get_apis_handled(self) -> List[APIHandled]:
226226
),
227227
APIHandled(
228228
NormalisedURLPath(
229-
get_api_path_with_dashboard_base(USER_EMAIL_VERIFY_API)
229+
get_api_path_with_dashboard_base(USER_EMAIL_VERIFY_TOKEN_API)
230230
),
231231
"post",
232-
USER_EMAIL_VERIFY_API,
232+
USER_EMAIL_VERIFY_TOKEN_API,
233233
False,
234234
),
235235
APIHandled(

0 commit comments

Comments
 (0)