Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2022-03-28 11:28:49 +0300
committerdartcafe <github@dartcafe.de>2022-03-28 11:28:49 +0300
commita3250047fe9772a2b32c0ddd4840e7a067d08754 (patch)
treef8e3b6e4082625f452e2fed561930c541a869697 /src/js/components/SideBar
parentc3b8dfe7cf16c88f44316243d5ea133b4a97b56d (diff)
remove orphaned component
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/SideBar')
-rw-r--r--src/js/components/SideBar/SideBarTabUserOptions.vue48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/js/components/SideBar/SideBarTabUserOptions.vue b/src/js/components/SideBar/SideBarTabUserOptions.vue
deleted file mode 100644
index 2a972963..00000000
--- a/src/js/components/SideBar/SideBarTabUserOptions.vue
+++ /dev/null
@@ -1,48 +0,0 @@
-<!--
- - @copyright Copyright (c) 2018 René Gieling <github@dartcafe.de>
- -
- - @author René Gieling <github@dartcafe.de>
- -
- - @license GNU AGPL version 3 or any later version
- -
- - 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>
- <div>
- <ConfigBox :title="t('polls', 'User Menu')" icon-class="icon-settings">
- <UserMenu />
- </ConfigBox>
- <ConfigBox :title="t('polls', 'Poll informations')" icon-class="icon-info">
- <PollInformation />
- </ConfigBox>
- </div>
-</template>
-
-<script>
-import ConfigBox from '../Base/ConfigBox'
-import PollInformation from '../Poll/PollInformation'
-import UserMenu from '../User/UserMenu'
-
-export default {
- name: 'SideBarTabUserOptions',
-
- components: {
- ConfigBox,
- PollInformation,
- UserMenu,
- },
-}
-</script>