mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 23:04:22 -05:00
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import Vue from 'vue'
|
|
import AdminSettingsSharing from './views/AdminSettingsSharing.vue'
|
|
|
|
export default new Vue({
|
|
name: 'AdminSettingsSharingSection',
|
|
el: '#vue-admin-settings-sharing',
|
|
render: (h) => h(AdminSettingsSharing),
|
|
})
|