From 09550adeb3a78eb1d469279942ed031327a1ec56 Mon Sep 17 00:00:00 2001 From: adam-skowronek Date: Mon, 13 Jun 2022 18:27:30 +0200 Subject: [PATCH] Add email to ProjectSupervisorSchema --- backend/app/students/schemas.py | 1 + 1 file changed, 1 insertion(+) 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()