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-09-21 23:13:26 +0300
committerdartcafe <github@dartcafe.de>2022-09-21 23:13:26 +0300
commitbb1ae6bf2e592b96082dbb8365eb3a4e3e22f8b5 (patch)
tree7437f4def74bb8161937189166ff72063f4913ab /src/js/components/SideBar
parentc55935498f3c72b6ef9433a80d09f489cec181e2 (diff)
removed deprecated collections aka projects
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/SideBar')
-rw-r--r--src/js/components/SideBar/SideBarTabCollaboration.vue58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/js/components/SideBar/SideBarTabCollaboration.vue b/src/js/components/SideBar/SideBarTabCollaboration.vue
deleted file mode 100644
index d2fb6313..00000000
--- a/src/js/components/SideBar/SideBarTabCollaboration.vue
+++ /dev/null
@@ -1,58 +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 class="sidebar-collaboration">
- <CollectionList v-if="pollId"
- :id="`${pollId}`"
- :name="pollTitle"
- type="poll" />
- </div>
-</template>
-
-<script>
-import { mapState } from 'vuex'
-import { CollectionList } from 'nextcloud-vue-collections'
-
-export default {
- name: 'SideBarTabCollaboration',
-
- components: {
- CollectionList,
- },
-
- computed: {
- ...mapState({
- pollId: (state) => state.poll.id,
- pollTitle: (state) => state.poll.title,
- }),
-
- },
-}
-</script>
-
-<style lang="scss">
- .sidebar-collaboration {
- display: flex;
- flex-direction: column;
- }
-</style>