Merge pull request #31770 from nextcloud/fix/systemtag_loading

Change script loading order in worflowengine
This commit is contained in:
blizzz 2022-03-31 13:27:36 +02:00 committed by GitHub
commit 87e079d2ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ use OCP\EventDispatcher\IEventListener;
use OCP\Template;
use function class_exists;
use function function_exists;
use function script;
use OCP\Util;
class LoadAdditionalSettingsScriptsListener implements IEventListener {
public function handle(Event $event): void {
@ -41,10 +41,9 @@ class LoadAdditionalSettingsScriptsListener implements IEventListener {
class_exists(Template::class, true);
}
script('core', 'systemtags');
script(Application::APP_ID, [
'workflowengine',
]);
Util::addScript('core', 'files_fileinfo');
Util::addScript('core', 'files_client');
Util::addScript('core', 'systemtags');
Util::addScript(Application::APP_ID, 'workflowengine');
}
}