diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-01 17:05:40 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-08-01 17:19:05 +0200 |
commit | ea4c6bd28568bce811c275d46478f44455cf237d (patch) | |
tree | a00a46f4ffe571d53a3682c1e8ebe33b8562bb5b /apps/workflowengine/lib/AppInfo | |
parent | 2734ff7d4ee2f3b16a8dc3759c2c4abafe2f608c (diff) | |
download | nextcloud-server-ea4c6bd28568bce811c275d46478f44455cf237d.tar.gz nextcloud-server-ea4c6bd28568bce811c275d46478f44455cf237d.zip |
Load the timezones via select2
Diffstat (limited to 'apps/workflowengine/lib/AppInfo')
-rw-r--r-- | apps/workflowengine/lib/AppInfo/Application.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/workflowengine/lib/AppInfo/Application.php b/apps/workflowengine/lib/AppInfo/Application.php index 7adc4f6864d..b5e769d01d7 100644 --- a/apps/workflowengine/lib/AppInfo/Application.php +++ b/apps/workflowengine/lib/AppInfo/Application.php @@ -30,6 +30,7 @@ class Application extends \OCP\AppFramework\App { parent::__construct('workflowengine'); $this->getContainer()->registerAlias('FlowOperationsController', 'OCA\WorkflowEngine\Controller\FlowOperations'); + $this->getContainer()->registerAlias('RequestTimeController', 'OCA\WorkflowEngine\Controller\RequestTime'); } /** @@ -51,6 +52,8 @@ class Application extends \OCP\AppFramework\App { 'systemtags/systemtagscollection', ]); + vendor_script('jsTimezoneDetect/jstz'); + script('workflowengine', [ 'admin', |