11 lines
398 B
JavaScript
11 lines
398 B
JavaScript
import { apiFactory } from "../utils.js";
|
|
export const getAllGroupsFactory = apiFactory()((api, _, utils) => {
|
|
const serviceURL = utils.makeURL(`${api.zpwServiceMap.group_poll[0]}/api/group/getlg/v4`);
|
|
return async function getAllGroups() {
|
|
const response = await utils.request(serviceURL, {
|
|
method: "GET",
|
|
});
|
|
return utils.resolve(response);
|
|
};
|
|
});
|