Skip to content

Commit

Permalink
fix: Add missing user session POST API
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Sep 12, 2023
1 parent fe6210d commit 7353e5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# under the License.
from __future__ import annotations

import json
from typing import TYPE_CHECKING, Callable, Optional, Awaitable, Dict, Any

from supertokens_python.framework import BaseResponse
Expand Down
6 changes: 6 additions & 0 deletions supertokens_python/recipe/dashboard/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,12 @@ def get_apis_handled(self) -> List[APIHandled]:
USER_SESSION_API,
False,
),
APIHandled(
NormalisedURLPath(get_api_path_with_dashboard_base(USER_SESSION_API)),
"post",
USER_SESSION_API,
False,
),
APIHandled(
NormalisedURLPath(get_api_path_with_dashboard_base(USER_PASSWORD_API)),
"put",
Expand Down

0 comments on commit 7353e5e

Please sign in to comment.