Skip to content

Commit ed18f4f

Browse files
authored
Merge pull request #350 from TeskaLabs/fix/last-login-path
Fix typo in last login path
2 parents 2369b5b + 14b7bed commit ed18f4f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
## v24.06
44

55
### Pre-releases
6-
- `v24.06-alpha1`
6+
- `v24.06-alpha4`
7+
- `v24.06-alpha3`
78
- `v24.06-alpha2`
9+
- `v24.06-alpha1`
810

911
### Fix
12+
- Fix typo in last login endpoint path (#346, `v24.06-alpha4`)
1013
- Fix the initialization of NoTenantsError (#346, `v24.06-alpha2`)
1114

1215
### Features

seacatauth/credentials/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(self, app, credentials_svc):
5454

5555
web_app.router.add_get("/account/provider", self.get_my_provider_info)
5656
web_app.router.add_put("/account/credentials", self.update_my_credentials)
57-
web_app.router.add_get("/account/last_login", self.get_my_last_login_data)
57+
web_app.router.add_get("/account/last-login", self.get_my_last_login_data)
5858

5959
# Back-compat; To be removed in next major version
6060
# >>>

0 commit comments

Comments
 (0)