Browse Source

Update nextcloud server and notifications to 25.0.2

pull/151/head
jld3103 2 years ago
parent
commit
9e09d7031f
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      external/nextcloud-notifications
  2. 2
      external/nextcloud-server
  3. 2
      packages/nextcloud/test/helper.dart
  4. 2
      specs/core.json
  5. 2
      specs/templates/appinfo_core.xml
  6. 2
      specs/templates/core.json
  7. 56
      specs/templates/notifications.json
  8. 2
      tool/Dockerfile.dev

2
external/nextcloud-notifications vendored

@ -1 +1 @@
Subproject commit d60834b6434b128de392bc734d6ad757c1456c65
Subproject commit c6da9d2aa34179e5fe2b6ce529f3aeffc5b7b109

2
external/nextcloud-server vendored

@ -1 +1 @@
Subproject commit 8896b40164f0e26c490c15514e97781e0037948c
Subproject commit 9c791972de9c2561a9b36c1a60e48c25315ecca5

2
packages/nextcloud/test/helper.dart

@ -8,7 +8,7 @@ import 'package:nextcloud/nextcloud.dart';
import 'package:process_run/cmd_run.dart';
import 'package:test/test.dart';
const String nextcloudVersion = '25.0.1';
const String nextcloudVersion = '25.0.2';
const String defaultUsername = 'user1';
const String defaultPassword = 'user1';

2
specs/core.json

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Core",
"version": "25.0.1",
"version": "25.0.2",
"description": "Core functionality of Nextcloud",
"license": {
"name": "agpl",

2
specs/templates/appinfo_core.xml

@ -4,6 +4,6 @@
<name>Core</name>
<summary>Core functionality of Nextcloud</summary>
<description><![CDATA[Core functionality of Nextcloud]]></description>
<version>25.0.1</version>
<version>25.0.2</version>
<licence>agpl</licence>
</info>

2
specs/templates/core.json

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "Core",
"version": "25.0.1",
"version": "25.0.2",
"description": "Core functionality of Nextcloud",
"license": {
"name": "agpl",

56
specs/templates/notifications.json

@ -305,6 +305,62 @@
}
}
}
},
"/ocs/v2.php/apps/notifications/api/{apiVersion}/settings/admin": {
"parameters": [
{
"name": "apiVersion",
"in": "path",
"required": true,
"schema": {
"type": "TODO"
}
}
],
"post": {
"operationId": "settings-admin-TODO",
"tags": [
"notifications"
],
"parameters": [
{
"name": "batchSetting",
"in": "query",
"required": true,
"schema": {
"type": "integer"
}
},
{
"name": "soundNotification",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "soundTalk",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
}
}

2
tool/Dockerfile.dev

@ -1,4 +1,4 @@
FROM nextcloud:25.0.1
FROM nextcloud:25.0.2
WORKDIR /usr/src/nextcloud
RUN chown -R www-data:www-data .
USER www-data

Loading…
Cancel
Save