Skip to content

Commit

Permalink
Move FilesApp root component to src
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed Feb 9, 2021
1 parent 468ce42 commit 1d2dccc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@
</div>
</template>
<script>
import Mixins from '../mixins'
import MixinRoutes from '../mixins/routes'
import Mixins from './mixins'
import MixinRoutes from './mixins/routes'
import { mapActions, mapGetters, mapMutations } from 'vuex'
import Sidebar from './Sidebar.vue'
import AppBar from './AppBar.vue'
import AllFilesList from './AllFilesList.vue'
import TrashBin from './Trashbin.vue'
import SharedFilesList from './Collaborators/SharedFilesList.vue'
import UploadProgress from './UploadProgress.vue'
import Sidebar from './components//Sidebar.vue'
import AppBar from './components/AppBar.vue'
import AllFilesList from './components/AllFilesList.vue'
import TrashBin from './components/Trashbin.vue'
import SharedFilesList from './components/Collaborators/SharedFilesList.vue'
import UploadProgress from './components/UploadProgress.vue'
export default {
components: {
Expand Down
12 changes: 6 additions & 6 deletions packages/web-app-files/src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import FilesApp from './components/FilesApp.vue'
import App from './App.vue'
import AllFiles from './views/AllFiles.vue'
import FileInfoVersions from './components/FileInfoVersions.vue'
import FileSharingSidebar from './components/FileSharingSidebar.vue'
Expand Down Expand Up @@ -124,7 +124,7 @@ const routes = [
{
path: '/favorites',
components: {
app: FilesApp
app: App
},
name: 'files-favorites',
meta: {
Expand All @@ -135,7 +135,7 @@ const routes = [
{
path: '/shared-with-me',
components: {
app: FilesApp
app: App
},
name: 'files-shared-with-me',
meta: {
Expand All @@ -146,7 +146,7 @@ const routes = [
{
path: '/shared-with-others',
components: {
app: FilesApp
app: App
},
name: 'files-shared-with-others',
meta: {
Expand All @@ -157,7 +157,7 @@ const routes = [
{
path: '/trash-bin',
components: {
app: FilesApp
app: App
},
name: 'files-trashbin',
meta: {
Expand Down Expand Up @@ -186,7 +186,7 @@ const routes = [
path: '/public-files/:item',
name: 'public-files',
components: {
app: FilesApp
app: App
},
meta: {
auth: false,
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3206,9 +3206,9 @@ data-urls@^2.0.0:
whatwg-mimetype "^2.3.0"
whatwg-url "^8.0.0"

"davclient.js@git+https://github.com/owncloud/davclient.js.git":
"davclient.js@https://github.com/owncloud/davclient.js.git":
version "0.2.1"
resolved "git+https://github.com/owncloud/davclient.js.git#bf19f590451b3c0658913568053ec7f300f7dfc1"
resolved "https://github.com/owncloud/davclient.js.git#bf19f590451b3c0658913568053ec7f300f7dfc1"

de-indent@^1.0.2:
version "1.0.2"
Expand Down

0 comments on commit 1d2dccc

Please sign in to comment.