aboutsummaryrefslogtreecommitdiffstats
path: root/apps/comments/src/init.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/src/init.ts')
-rw-r--r--apps/comments/src/init.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/comments/src/init.ts b/apps/comments/src/init.ts
new file mode 100644
index 00000000000..675274b1b40
--- /dev/null
+++ b/apps/comments/src/init.ts
@@ -0,0 +1,8 @@
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+import { registerFileAction } from '@nextcloud/files'
+import { action } from './actions/inlineUnreadCommentsAction'
+
+registerFileAction(action)