Update home page and styles, add user API URL

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-09-22 10:20:52 +09:00
parent 1cd1f40e86
commit 1610ae144a
3 changed files with 32 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
import {
API_BASE_URL,
API_URL_KEY,
} from './../constants/url';
export const API_URL_USER = {
allUserList: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/all/users`;
},
createUser: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/create`;
},
deleteUser: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/delete`;
},
updateUser: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/update`;
},
userDetail: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/detail`;
},
existsUserid: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/exists/userid`;
},
}