Skip to content

Commit

Permalink
feat(project_management): Add attribute table_fields to Project Type …
Browse files Browse the repository at this point in the history
…model

ref:  #248 #345 #346
  • Loading branch information
jon-nfc committed Nov 27, 2024
1 parent c0a0bc5 commit 4a5991f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/project_management/models/project_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,15 @@ class Meta:
},
]


table_fields: list = [
'name',
'organization',
'created',
'modified'
]


def __str__(self):

return self.name

0 comments on commit 4a5991f

Please sign in to comment.