update create user button, reset password button
Build and Release / release (push) Successful in 32s

This commit is contained in:
2026-05-12 14:49:10 +07:00
parent c13ddb37fc
commit 6cf592cc57
7 changed files with 263 additions and 9 deletions
+3 -2
View File
@@ -35,8 +35,9 @@ export const API = {
RESTORE_USER: (Id: number | string) => `${API_URL_ROOT}/users/${Id}/restore`,
GET_USER_MEDIA: (Id: number | string) => `${API_URL_ROOT}/users/${Id}/media`,
GET_ALL_ROLE: `${API_URL_ROOT}/roles`,
UPDATE_APPLICATION_STATUS: (Id: number | string) => `${API_URL_ROOT}/historian/application/${Id}/status`
UPDATE_APPLICATION_STATUS: (Id: number | string) => `${API_URL_ROOT}/historian/application/${Id}/status`,
RESET_PASSWORD: (Id: number | string) => `${API_URL_ROOT}/users/${Id}/password`,
CREATE_USER: `${API_URL_ROOT}/users`,
},
Historian:{
CREATE_CV: `${API_URL_ROOT}/historian/application`,