diff --git a/backend/app/students/schemas.py b/backend/app/students/schemas.py index 9d84e5c..97e6025 100644 --- a/backend/app/students/schemas.py +++ b/backend/app/students/schemas.py @@ -5,6 +5,7 @@ from marshmallow import fields class ProjectSupervisorSchema(ma.Schema): first_name = fields.Str() last_name = fields.Str() + email = fields.Str() mode = fields.Boolean() available_groups = fields.Integer()