avatar update and manage user table

This commit is contained in:
2026-04-07 17:54:42 +07:00
parent e3065e1bf5
commit 9159b2f0e6
10 changed files with 332 additions and 191 deletions

View File

@@ -0,0 +1,10 @@
import api from "@/config/config";
import { API } from "../../api";
import { getUserDto } from "@/interface/admin";
export const apiGetListUser = async (payload: getUserDto) => {
const response = await api.get(API.Admin.GET_LIST_USERS, {
params: payload,
});
return response?.data;
};