9 lines
234 B
Python
9 lines
234 B
Python
from ..dependencies import ma
|
|
from ..project_supervisor.models import ProjectSupervisor
|
|
|
|
class ProjectSupervisorSchema(ma.SQLAlchemyAutoSchema):
|
|
class Meta:
|
|
model = ProjectSupervisor
|
|
include_relationships = False
|
|
|