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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2019-12-11 19:32:40 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2019-12-13 11:17:58 +0300
commite1ff175908c66750a45089eb479ef97c6b5266b4 (patch)
tree744e6437e0cb2ec5561e30468085a3d285220a15 /src/FilesSidebarTabApp.vue
parent64d3dec45b422f4a2f66cec582a8781e0587ebf2 (diff)
Add talk sidebar tab for files
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src/FilesSidebarTabApp.vue')
-rw-r--r--src/FilesSidebarTabApp.vue44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/FilesSidebarTabApp.vue b/src/FilesSidebarTabApp.vue
new file mode 100644
index 000000000..0804654aa
--- /dev/null
+++ b/src/FilesSidebarTabApp.vue
@@ -0,0 +1,44 @@
+<!--
+ - @copyright Copyright (c) 2019 Marco Ambrosini <marcoambrosini@pm.me>
+ -
+ - @author Marco Ambrosini <marcoambrosini@pm.me>
+ -
+ - @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>
+ <p>Talk tab coming soon</p>
+</template>
+
+<script>
+export default {
+ name: 'FilesSidebarTabApp',
+ data() {
+ return {
+ // needed for reactivity
+ Talk: OCA.Talk,
+ }
+ },
+ computed: {
+ fileInfo() {
+ return this.Talk.fileInfo
+ }
+ }
+}
+</script>
+
+<style scoped>
+
+</style>