|
@@ -97,9 +97,9 @@ func GetStudentsAll(args map[string]string) (interface{}, error) {
|
|
for _, student := range students {
|
|
for _, student := range students {
|
|
student.GetTeachers()
|
|
student.GetTeachers()
|
|
}
|
|
}
|
|
- // for _, student := range students {
|
|
|
|
- // student.GetActivities()
|
|
|
|
- // }
|
|
|
|
|
|
+ for _, student := range students {
|
|
|
|
+ student.GetActivities()
|
|
|
|
+ }
|
|
return students, nil
|
|
return students, nil
|
|
}
|
|
}
|
|
|
|
|