CSV task export show the assignee name in addition to the assignee username

This commit is contained in:
Frederic Guillot 2015-11-20 20:45:10 -05:00
parent f119cbd6be
commit d457d123d7
2 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,7 @@ Improvements:
* Improve error handling of plugins
* Use PHP7 function random_bytes() to generate tokens if available
* CSV task export show the assignee name in addition to the assignee username
Internal code refactoring:

View File

@ -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'),