Add email to ProjectSupervisorSchema

This commit is contained in:
adam-skowronek 2022-06-13 18:27:30 +02:00
parent 0a04a86a00
commit 09550adeb3

View File

@ -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()