Add the systemtag js files
This commit is contained in:
parent
df3ca567ad
commit
7b73c0f5a2
|
@ -40,9 +40,24 @@ class Application extends \OCP\AppFramework\App {
|
||||||
$dispatcher->addListener(
|
$dispatcher->addListener(
|
||||||
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
|
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
|
||||||
function() {
|
function() {
|
||||||
Util::addStyle('workflowengine', 'admin');
|
style('workflowengine', [
|
||||||
Util::addScript('workflowengine', 'admin');
|
'admin',
|
||||||
Util::addScript('workflowengine', 'usergroupmembershipplugin');
|
]);
|
||||||
|
|
||||||
|
script('core', [
|
||||||
|
'oc-backbone-webdav',
|
||||||
|
'systemtags/systemtags',
|
||||||
|
'systemtags/systemtagmodel',
|
||||||
|
'systemtags/systemtagscollection',
|
||||||
|
]);
|
||||||
|
|
||||||
|
script('workflowengine', [
|
||||||
|
'admin',
|
||||||
|
|
||||||
|
// Check plugins
|
||||||
|
'filesystemtagsplugin',
|
||||||
|
'usergroupmembershipplugin',
|
||||||
|
]);
|
||||||
},
|
},
|
||||||
-100
|
-100
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue