зеркало из https://github.com/nextcloud/spreed.git
Move commands settings to src/
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Родитель
1fc32b8f29
Коммит
690c54d2db
|
@ -10391,6 +10391,11 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"vue-fragment": {
|
||||
"version": "1.5.1",
|
||||
"resolved": "https://registry.npmjs.org/vue-fragment/-/vue-fragment-1.5.1.tgz",
|
||||
"integrity": "sha512-ig6eES6TcMBbANW71ylB+AJgRN+Zksb3f50AxjGpAk6hMzqmeuD80qeh4LJP0jVw2dMBMjgRUfIkrvxygoRgtQ=="
|
||||
},
|
||||
"vue-hot-reload-api": {
|
||||
"version": "2.3.4",
|
||||
"resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz",
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
"nextcloud-vue": "^0.12.3",
|
||||
"vue": "^2.6.10",
|
||||
"vue-contenteditable-directive": "^1.2.0",
|
||||
"vue-fragment": "^1.5.1",
|
||||
"vue-router": "^3.1.3",
|
||||
"vue-virtual-scroll-list": "^1.4.2",
|
||||
"vuex": "^3.1.1"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import Commands from './views/Commands'
|
||||
import Commands from './views/AdminSettings/Commands'
|
||||
|
||||
Vue.prototype.t = t
|
||||
Vue.prototype.n = n
|
|
@ -54,7 +54,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import Command from '../components/Command'
|
||||
import Command from '../../components/AdminSettings/Command'
|
||||
|
||||
export default {
|
||||
name: 'Commands',
|
|
@ -5,7 +5,6 @@ module.exports = {
|
|||
entry: {
|
||||
"collections": path.join(__dirname, 'src', 'collections.js'),
|
||||
"collectionsintegration": path.join(__dirname, 'src', 'collectionsintegration.js'),
|
||||
"admin/commands": path.join(__dirname, 'src', 'CommandsSettings.js'),
|
||||
"admin/general-settings": path.join(__dirname, 'src', 'GeneralSettings.js'),
|
||||
"admin/signaling-server": path.join(__dirname, 'src', 'SignalingServerSettings.js'),
|
||||
"admin/stun-server": path.join(__dirname, 'src', 'StunServerSettings.js'),
|
||||
|
|
|
@ -5,6 +5,7 @@ const StyleLintPlugin = require('stylelint-webpack-plugin')
|
|||
module.exports = {
|
||||
entry: {
|
||||
'admin/allowed-groups': path.join(__dirname, 'src', 'AllowedGroupsSettings.js'),
|
||||
"admin/commands": path.join(__dirname, 'src', 'CommandsSettings.js'),
|
||||
'talk': path.join(__dirname, 'src', 'main.js')
|
||||
},
|
||||
output: {
|
||||
|
|
Загрузка…
Ссылка в новой задаче