diff --git a/package.json b/package.json index fb5133f21..2cd3abda5 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,8 @@ "dev": "webpack --config webpack.dev.js", "watch": "webpack --progress --watch --config webpack.dev.js", "build": "webpack --progress --hide-modules --config webpack.prod.js", - "lint": "eslint --ext .js,.vue src tests", - "lint:fix": "eslint --ext .js,.vue src tests --fix", + "lint": "eslint --ext .js,.vue src", + "lint:fix": "eslint --ext .js,.vue src --fix", "test": "jest", "test:coverage": "jest --coverage" }, diff --git a/src/App.vue b/src/App.vue index 57617ece6..427877404 100644 --- a/src/App.vue +++ b/src/App.vue @@ -21,7 +21,6 @@ --> - - diff --git a/src/components/navigation/AppNavigation.vue b/src/components/navigation/AppNavigation.vue index 8e96de49b..4e0a9936c 100644 --- a/src/components/navigation/AppNavigation.vue +++ b/src/components/navigation/AppNavigation.vue @@ -28,31 +28,36 @@ :text="t('deck', 'All boards')" :boards="noneArchivedBoards" :open-on-add-boards="true" - icon="icon-deck" /> + icon="icon-deck" + /> + icon="icon-archive" + /> + icon="icon-shared" + /> -
+
- + @input="updateConfig" + />

{{ t('deck', 'Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.') }}

@@ -66,14 +71,12 @@ import ClickOutside from 'vue-click-outside' import { Multiselect } from '@nextcloud/vue/dist/Components/Multiselect' import AppNavigationAddBoard from './AppNavigationAddBoard' -import AppNavigationBoard from './AppNavigationBoard' import AppNavigationBoardCategory from './AppNavigationBoardCategory' export default { name: 'AppNavigation', components: { AppNavigationAddBoard, - AppNavigationBoard, AppNavigationBoardCategory, Multiselect }, diff --git a/src/components/navigation/AppNavigationAddBoard.vue b/src/components/navigation/AppNavigationAddBoard.vue index 313320f51..52e400a3e 100644 --- a/src/components/navigation/AppNavigationAddBoard.vue +++ b/src/components/navigation/AppNavigationAddBoard.vue @@ -21,8 +21,8 @@ -->