Added dao todos
This commit is contained in:
parent
85bbef2121
commit
d3ec69b3b5
|
@ -15,4 +15,7 @@ pub async fn update_token(conn: &PgPool, token_id: &i32, auth_token: String) ->
|
|||
WHERE id = $1 RETURNING *;"#)
|
||||
.bind(token_id).bind(auth_token).bind(Utc::now())
|
||||
.fetch_one(conn).await
|
||||
}
|
||||
}
|
||||
// TODO: add validate_user token (user_id, auth_token)
|
||||
// Update user token (refresh_token, user_id)
|
||||
// Delete user token (token_id)
|
Loading…
Reference in New Issue