diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-10-19 16:07:43 -0700 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-10-19 16:07:43 -0700 |
commit | d5353bfcdcc0a164d3cf4cf8070ac813647b7377 (patch) | |
tree | df940f37af89b9361275bfb46ed41bcd869ffccf /app/Export | |
parent | d3b8fbfa2864e55b7e5916e55ca818599e7e94d6 (diff) |
Add priority to task export
Diffstat (limited to 'app/Export')
-rw-r--r-- | app/Export/TaskExport.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Export/TaskExport.php b/app/Export/TaskExport.php index f47cd082..3019906d 100644 --- a/app/Export/TaskExport.php +++ b/app/Export/TaskExport.php @@ -83,7 +83,8 @@ class TaskExport extends Base TaskModel::TABLE . '.date_completed', TaskModel::TABLE . '.date_started', TaskModel::TABLE . '.time_estimated', - TaskModel::TABLE . '.time_spent' + TaskModel::TABLE . '.time_spent', + TaskModel::TABLE . '.priority' ) ->join(UserModel::TABLE, 'id', 'owner_id', TaskModel::TABLE) ->left(UserModel::TABLE, 'uc', 'id', TaskModel::TABLE, 'creator_id') @@ -152,6 +153,7 @@ class TaskExport extends Base e('Start date'), e('Time estimated'), e('Time spent'), + e('Priority'), ); } } |