cicd
Some checks failed
Build and Release / release (push) Failing after 38s

This commit is contained in:
2026-04-19 19:45:58 +07:00
parent 7cff844e5b
commit fd37d95699
11 changed files with 115 additions and 20 deletions

5
api.ts
View File

@@ -5,8 +5,8 @@ export const API = {
User : {
CURRENT: `${API_URL_ROOT}/users/current`,
MEDIA: `${API_URL_ROOT}/users/current/media`,
Update: (Id: number | string) => `${API_URL_ROOT}/users/${Id}`,
CHANGE_PASSWORD: (Id: number | string) => `${API_URL_ROOT}/users/${Id}/password`,
Update: `${API_URL_ROOT}/users/current`,
CHANGE_PASSWORD: `${API_URL_ROOT}/users/current/password`,
APPLICATION: `${API_URL_ROOT}/users/current/application`
},
Media:{
@@ -37,5 +37,6 @@ export const API = {
Historian:{
CREATE_CV: `${API_URL_ROOT}/historian/application`,
APPLICATION: `${API_URL_ROOT}/historian/application`,
DELETE_CV: (Id: number | string) => `${API_URL_ROOT}/historian/application/${Id}`,
}
}