diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-11-20 20:45:10 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-11-20 20:45:10 -0500 |
commit | d457d123d7bc4e05c14505fb8964055247cf622b (patch) | |
tree | 68b4d0c2d6f7f92e1042a25cee918f623070660b /app/Model/TaskExport.php | |
parent | f119cbd6be467b3832a4543045980dd0f1936275 (diff) |
CSV task export show the assignee name in addition to the assignee username
Diffstat (limited to 'app/Model/TaskExport.php')
-rw-r--r-- | app/Model/TaskExport.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Model/TaskExport.php b/app/Model/TaskExport.php index d38a5384..278c0897 100644 --- a/app/Model/TaskExport.php +++ b/app/Model/TaskExport.php @@ -58,6 +58,7 @@ class TaskExport extends Base tasks.date_due, creators.username AS creator_username, users.username AS assignee_username, + users.name AS assignee_name, tasks.score, tasks.title, tasks.date_creation, @@ -129,7 +130,8 @@ class TaskExport extends Base e('Color'), e('Due date'), e('Creator'), - e('Assignee'), + e('Assignee Username'), + e('Assignee Name'), e('Complexity'), e('Title'), e('Creation date'), |