feat: add update password
This commit is contained in:
+5
-1
@@ -104,7 +104,9 @@ export interface UpdateUsername {
|
||||
username: string
|
||||
}
|
||||
|
||||
|
||||
export interface UpdatePassword {
|
||||
password: string
|
||||
}
|
||||
// --- Endpoints ---
|
||||
|
||||
export const api = {
|
||||
@@ -155,4 +157,6 @@ export const api = {
|
||||
request<DemoDetails>('POST', '/demos/details', { username }),
|
||||
updateUsername: (username: string) =>
|
||||
request<UpdateUsername>('POST', '/profile/username', { username }),
|
||||
updatePassword: (password: string) =>
|
||||
request<UpdatePassword>('POST', '/profile/password', { password })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user