aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/files_sharing_tab.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/src/files_sharing_tab.js')
-rw-r--r--apps/files_sharing/src/files_sharing_tab.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/src/files_sharing_tab.js b/apps/files_sharing/src/files_sharing_tab.js
index 2c12703ab83..8a31569d6d0 100644
--- a/apps/files_sharing/src/files_sharing_tab.js
+++ b/apps/files_sharing/src/files_sharing_tab.js
@@ -28,6 +28,7 @@ import { translate as t, translatePlural as n } from '@nextcloud/l10n'
import SharingTab from './views/SharingTab'
import ShareSearch from './services/ShareSearch'
import ExternalLinkActions from './services/ExternalLinkActions'
+import ExternalShareActions from './services/ExternalShareActions'
import TabSections from './services/TabSections'
// Init Sharing Tab Service
@@ -36,6 +37,7 @@ if (!window.OCA.Sharing) {
}
Object.assign(window.OCA.Sharing, { ShareSearch: new ShareSearch() })
Object.assign(window.OCA.Sharing, { ExternalLinkActions: new ExternalLinkActions() })
+Object.assign(window.OCA.Sharing, { ExternalShareActions: new ExternalShareActions() })
Object.assign(window.OCA.Sharing, { ShareTabSections: new TabSections() })
Vue.prototype.t = t