frontAnswerer/src/api/quizRelase.ts

20 lines
382 B
TypeScript
Raw Normal View History

import { makeRequest } from "@frontend/kitui";
function get(quizId: string) {
return makeRequest<any>({
url: `https://squiz.pena.digital/answer/settings`,
body: {
quiz_id: quizId,
limit: 100,
page: 0,
need_config: true,
},
method: "POST",
});
}
export const relaseApi = {
get: get,
};