Add the systemtag js files

This commit is contained in:
Joas Schilling 2016-07-27 15:17:38 +02:00
parent df3ca567ad
commit 7b73c0f5a2
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 18 additions and 3 deletions

View File

@ -40,9 +40,24 @@ class Application extends \OCP\AppFramework\App {
$dispatcher->addListener(
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
function() {
Util::addStyle('workflowengine', 'admin');
Util::addScript('workflowengine', 'admin');
Util::addScript('workflowengine', 'usergroupmembershipplugin');
style('workflowengine', [
'admin',
]);
script('core', [
'oc-backbone-webdav',
'systemtags/systemtags',
'systemtags/systemtagmodel',
'systemtags/systemtagscollection',
]);
script('workflowengine', [
'admin',
// Check plugins
'filesystemtagsplugin',
'usergroupmembershipplugin',
]);
},
-100
);