aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/OCP/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/OCP/index.js')
-rw-r--r--core/src/OCP/index.js21
1 files changed, 15 insertions, 6 deletions
diff --git a/core/src/OCP/index.js b/core/src/OCP/index.js
index 4f2c47f1fa4..94f4e8e5eb3 100644
--- a/core/src/OCP/index.js
+++ b/core/src/OCP/index.js
@@ -1,13 +1,22 @@
-import * as AppConfig from './appconfig'
-import * as Comments from './comments'
-import Loader from './loader'
+/**
+ * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
import { loadState } from '@nextcloud/initial-state'
-import Collaboration from './collaboration'
-import * as WhatsNew from './whatsnew'
-import Toast from './toast'
+
+import * as AppConfig from './appconfig.js'
+import * as Comments from './comments.js'
+import * as WhatsNew from './whatsnew.js'
+
+import Accessibility from './accessibility.js'
+import Collaboration from './collaboration.js'
+import Loader from './loader.js'
+import Toast from './toast.js'
/** @namespace OCP */
export default {
+ Accessibility,
AppConfig,
Collaboration,
Comments,