aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/PersonalSettings.vue
blob: b076b0c1e3df8382cbfb805a72fc297bf3d96fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--
  - 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>