diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-11-22 17:47:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 17:47:04 +0100 |
commit | 8dcd992ad42bb7b2a3a7a7acab0987579f293e26 (patch) | |
tree | ee8b2af702550754b0de8880999f63a502e521a5 /apps/settings/src/components/PersonalInfo/FediverseSection.vue | |
parent | 603feb98f24c92992da025255b0e125ad9d169ba (diff) | |
parent | f244406ebd54bd8eca160078c8513b57d0316f5b (diff) | |
download | nextcloud-server-8dcd992ad42bb7b2a3a7a7acab0987579f293e26.tar.gz nextcloud-server-8dcd992ad42bb7b2a3a7a7acab0987579f293e26.zip |
Merge pull request #34940 from nextcloud/feat/add-mastodon
Add mastodon and reorganize profile info section
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/FediverseSection.vue')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/FediverseSection.vue | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/settings/src/components/PersonalInfo/FediverseSection.vue b/apps/settings/src/components/PersonalInfo/FediverseSection.vue new file mode 100644 index 00000000000..3975308d587 --- /dev/null +++ b/apps/settings/src/components/PersonalInfo/FediverseSection.vue @@ -0,0 +1,50 @@ +<!-- + - @copyright 2022 Christopher Ng <chrng8@gmail.com> + - + - @author Christopher Ng <chrng8@gmail.com> + - + - @license AGPL-3.0-or-later + - + - This program is free software: you can redistribute it and/or modify + - it under the terms of the GNU Affero General Public License as + - published by the Free Software Foundation, either version 3 of the + - License, or (at your option) any later version. + - + - This program is distributed in the hope that it will be useful, + - but WITHOUT ANY WARRANTY; without even the implied warranty of + - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + - GNU Affero General Public License for more details. + - + - You should have received a copy of the GNU Affero General Public License + - along with this program. If not, see <http://www.gnu.org/licenses/>. + - +--> + +<template> + <AccountPropertySection v-bind.sync="fediverse" + :placeholder="t('settings', 'Your handle')" /> +</template> + +<script> +import { loadState } from '@nextcloud/initial-state' + +import AccountPropertySection from './shared/AccountPropertySection.vue' + +import { NAME_READABLE_ENUM } from '../../constants/AccountPropertyConstants.js' + +const { fediverse } = loadState('settings', 'personalInfoParameters', {}) + +export default { + name: 'FediverseSection', + + components: { + AccountPropertySection, + }, + + data() { + return { + fediverse: { ...fediverse, readable: NAME_READABLE_ENUM[fediverse.name] }, + } + }, +} +</script> |