This commit is contained in:
John Molakvoæ (skjnldsv) 2019-11-27 12:32:17 +01:00
Родитель b75d6d0551
Коммит bd5ebe79fc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 60C25B8C072916CF
7 изменённых файлов: 860 добавлений и 2176 удалений

Просмотреть файл

@ -1,5 +0,0 @@
{
"presets": [
"@babel/env"
]
}

2
.gitignore поставляемый
Просмотреть файл

@ -5,4 +5,4 @@ build/
vendor/
clover.xml
js
.vscode

Просмотреть файл

@ -9,7 +9,7 @@
Guests accounts can be created from the share menu by entering either the recipients email or name and choosing "create guest account", once the share is created the guest user will receive an email notification about the mail with a link to set their password.
Guests users can only access files shared to them and can't create any files outside of shares, additionally, the apps accessible to guest accounts are whitelisted.]]></description>
<version>1.3.1</version>
<version>1.4.0</version>
<licence>agpl</licence>
<author>Nextcloud</author>
<types>

10
babel.config.js Normal file
Просмотреть файл

@ -0,0 +1,10 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
modules: false
}
]
]
}

3002
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "guests",
"description": "Create guest users which can only see files shared with them",
"version": "1.0.0",
"version": "1.4.0",
"author": "Robin Appelman <robin@icewind.nl>",
"contributors": [
"Robin Appelman <robin@icewind.nl>",
@ -66,7 +66,7 @@
"dependencies": {
"@nextcloud/axios": "^0.4.2",
"@nextcloud/router": "^0.1.0",
"@nextcloud/vue": "^1.2.0",
"@nextcloud/vue": "^1.2.2",
"deep-equal": "^1.1.1",
"email-validator": "^2.0.4",
"vue": "^2.6.10"

Просмотреть файл

@ -1,6 +1,6 @@
const path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const StyleLintPlugin = require('stylelint-webpack-plugin');
const path = require('path')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const StyleLintPlugin = require('stylelint-webpack-plugin')
module.exports = {
entry: {
@ -47,6 +47,7 @@ module.exports = {
})
],
resolve: {
extensions: ['*', '.js', '.vue', '.json']
extensions: ['*', '.js', '.vue'],
symlinks: false
}
};
}