Todo editing

This commit is contained in:
Sewmina
2022-04-05 06:52:58 +05:30
parent b7ce14a558
commit 7aa8712c16
7 changed files with 95 additions and 20 deletions

View File

@@ -37,6 +37,10 @@ class TaskType{
static String colName="name";
static String colCategory = "category_id";
static String colRelatedProject = "related_project";
static String getDisplayName(TaskType taskType){
return (taskType.name + ((taskType.relatedProject != null) ? ' [${taskType.relatedProject!.name}]' : ''));
}
}
class Activity{