Status was removed from the model

This commit is contained in:
mike cullerton 2022-02-02 10:04:52 -05:00
parent 1cb6465f22
commit 2a0d71aab6
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class GitCommit(object):
class GitRepoSchema(ma.Schema): class GitRepoSchema(ma.Schema):
class Meta: class Meta:
model = GitRepo model = GitRepo
fields = ["directory", "branch", "merge_branch", "status", "changes", "untracked"] fields = ["directory", "branch", "merge_branch", "changes", "untracked"]
class GitCommitSchema(ma.Schema): class GitCommitSchema(ma.Schema):