summaryrefslogtreecommitdiff
path: root/app/Controller/Export.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-03-28 12:39:46 -0400
committerFrederic Guillot <fred@kanboard.net>2015-03-28 12:39:46 -0400
commit26fea9b96ba4376a54b5d55b207d3eac040160d7 (patch)
tree5034c38ffff04d8d60becd1c09d4360036ce0927 /app/Controller/Export.php
parent87d2c6d99e6eb26b526f5da22b3496e3d02d11ed (diff)
Add task transitions csv export
Diffstat (limited to 'app/Controller/Export.php')
-rw-r--r--app/Controller/Export.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Controller/Export.php b/app/Controller/Export.php
index 1997a4ea..b8f932c1 100644
--- a/app/Controller/Export.php
+++ b/app/Controller/Export.php
@@ -72,4 +72,14 @@ class Export extends Base
{
$this->common('projectDailySummary', 'getAggregatedMetrics', t('Summary'), 'summary', t('Daily project summary export'));
}
+
+ /**
+ * Transition export
+ *
+ * @access public
+ */
+ public function transitions()
+ {
+ $this->common('transition', 'export', t('Transitions'), 'transitions', t('Task transitions export'));
+ }
}