diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-10-19 09:08:21 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-10-19 10:04:51 +0200 |
commit | 2d98cd1dafb3adbcad5d9af9245f44aec583de2e (patch) | |
tree | ca2f867e50680bed2911a94b35d98617b7252b59 /core/src/services | |
parent | a6684da737c40e3d05b3a88bf6f8c8649364587b (diff) | |
download | nextcloud-server-2d98cd1dafb3adbcad5d9af9245f44aec583de2e.tar.gz nextcloud-server-2d98cd1dafb3adbcad5d9af9245f44aec583de2e.zip |
Add config and fix selenium
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core/src/services')
-rw-r--r-- | core/src/services/BrowserStorageService.js | 4 | ||||
-rw-r--r-- | core/src/services/BrowsersListService.js | 2 | ||||
-rw-r--r-- | core/src/services/LoggerService.js | 28 |
3 files changed, 3 insertions, 31 deletions
diff --git a/core/src/services/BrowserStorageService.js b/core/src/services/BrowserStorageService.js index d383e1caaaf..3ecf52f423d 100644 --- a/core/src/services/BrowserStorageService.js +++ b/core/src/services/BrowserStorageService.js @@ -3,7 +3,7 @@ * * @author John Molakvoæ <skjnldsv@protonmail.com> * - * @license GNU AGPL version 3 or any later version + * @license AGPL-3.0-or-later * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -22,7 +22,7 @@ import { getBuilder } from '@nextcloud/browser-storage' -export default getBuilder('nextcloud') +export default getBuilder('core') .clearOnLogout() .persist() .build() diff --git a/core/src/services/BrowsersListService.js b/core/src/services/BrowsersListService.js index c5d546665dc..5027489e8e9 100644 --- a/core/src/services/BrowsersListService.js +++ b/core/src/services/BrowsersListService.js @@ -3,7 +3,7 @@ * * @author John Molakvoæ <skjnldsv@protonmail.com> * - * @license GNU AGPL version 3 or any later version + * @license AGPL-3.0-or-later * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/core/src/services/LoggerService.js b/core/src/services/LoggerService.js deleted file mode 100644 index f0b8fc9e61d..00000000000 --- a/core/src/services/LoggerService.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * @copyright 2021 John Molakvoæ <skjnldsv@protonmail.com> - * - * @author John Molakvoæ <skjnldsv@protonmail.com> - * - * @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/>. - * - */ - -import { getLoggerBuilder } from '@nextcloud/logger' - -export default getLoggerBuilder() - .setApp('core') - .detectUser() - .build() |