chore: resolved conflicts

This commit is contained in:
Jannat Patel
2025-02-10 16:48:02 +05:30
24 changed files with 2221 additions and 636 deletions

View File

@@ -291,7 +291,7 @@ const deleteStudents = createResource({
url: 'lms.lms.api.delete_documents',
makeParams(values) {
return {
doctype: 'Batch Student',
doctype: 'LMS Batch Enrollment',
documents: values.students,
}
},

View File

@@ -46,11 +46,9 @@ const studentResource = createResource({
makeParams(values) {
return {
doc: {
doctype: 'Batch Student',
parent: props.batch,
parenttype: 'LMS Batch',
parentfield: 'students',
student: student.value,
doctype: 'LMS Batch Enrollment',
batch: props.batch,
member: student.value,
},
}
},