CSV task export show the assignee name in addition to the assignee username
This commit is contained in:
@@ -15,6 +15,7 @@ Improvements:
|
|||||||
|
|
||||||
* Improve error handling of plugins
|
* Improve error handling of plugins
|
||||||
* Use PHP7 function random_bytes() to generate tokens if available
|
* 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:
|
Internal code refactoring:
|
||||||
|
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ class TaskExport extends Base
|
|||||||
tasks.date_due,
|
tasks.date_due,
|
||||||
creators.username AS creator_username,
|
creators.username AS creator_username,
|
||||||
users.username AS assignee_username,
|
users.username AS assignee_username,
|
||||||
|
users.name AS assignee_name,
|
||||||
tasks.score,
|
tasks.score,
|
||||||
tasks.title,
|
tasks.title,
|
||||||
tasks.date_creation,
|
tasks.date_creation,
|
||||||
@@ -129,7 +130,8 @@ class TaskExport extends Base
|
|||||||
e('Color'),
|
e('Color'),
|
||||||
e('Due date'),
|
e('Due date'),
|
||||||
e('Creator'),
|
e('Creator'),
|
||||||
e('Assignee'),
|
e('Assignee Username'),
|
||||||
|
e('Assignee Name'),
|
||||||
e('Complexity'),
|
e('Complexity'),
|
||||||
e('Title'),
|
e('Title'),
|
||||||
e('Creation date'),
|
e('Creation date'),
|
||||||
|
|||||||
Reference in New Issue
Block a user