|
@@ -98,9 +98,9 @@ export function saveExamStudent({
|
|
|
}
|
|
|
|
|
|
export function toggleEnableExamStudent({ id, enable }) {
|
|
|
- return httpApp.post("/api/admin/examStudent/save", [{ id, enable }]);
|
|
|
+ return httpApp.post("/api/admin/examStudent/toggle", [{ id, enable }]);
|
|
|
}
|
|
|
|
|
|
export function toggleEnableExamStudentArray(ary = []) {
|
|
|
- return httpApp.post("/api/admin/examStudent/save", ary);
|
|
|
+ return httpApp.post("/api/admin/examStudent/toggle", ary);
|
|
|
}
|