admin.student.go
- This contains function related to application students.
#1
func getStudentsByEventHandler
- Used to get an array of student RCs enrolled in an event.
First, students are fetched from Event Id using the function:
func fetchStudentsByEvent(ctx, eid, &students)
Mentioned in application/db.student
Then, student RCs are fetched from the studentRCIDs using the function:
func FetchStudents(ctx, studentRCIDs, &studentRCs)
Mentioned in rc/db.student