More tests for rest and dao.

This commit is contained in:
Nicholas Staples
2016-01-13 12:14:21 +00:00
parent dad0fff4ba
commit 99820b3e85
5 changed files with 187 additions and 6 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ class ServiceSchema(ma.ModelSchema):
class TemplateSchema(ma.ModelSchema):
class Meta:
model = models.Template
exclude = ("updated_at", "created_at")
exclude = ("updated_at", "created_at", "service_id")
user_schema = UserSchema()