mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
22 lines
471 B
Vue
22 lines
471 B
Vue
<!--
|
|
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
<template>
|
|
<div id="files-personal-settings" class="section">
|
|
<h2>{{ t('files', 'Files') }}</h2>
|
|
<TransferOwnershipDialogue />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TransferOwnershipDialogue from './TransferOwnershipDialogue.vue'
|
|
|
|
export default {
|
|
name: 'PersonalSettings',
|
|
components: {
|
|
TransferOwnershipDialogue,
|
|
},
|
|
}
|
|
</script>
|