add using refresh token to get access token

This commit is contained in:
2025-10-12 07:55:58 +02:00
parent c937ae8d83
commit 67302965d8
10 changed files with 111 additions and 32 deletions

View File

@@ -22,6 +22,6 @@ pub fn utils_routes() -> Router<AppState> {
.route("/update_password", put(UpdatePassword))
.route("/create_refresh", post(create_refresh_token))
.route("/login_refresh_token", post(login_refresh_token))
//.with_state(state)
}