diff --git a/external/nextcloud-notifications b/external/nextcloud-notifications index d60834b6..c6da9d2a 160000 --- a/external/nextcloud-notifications +++ b/external/nextcloud-notifications @@ -1 +1 @@ -Subproject commit d60834b6434b128de392bc734d6ad757c1456c65 +Subproject commit c6da9d2aa34179e5fe2b6ce529f3aeffc5b7b109 diff --git a/external/nextcloud-server b/external/nextcloud-server index 8896b401..9c791972 160000 --- a/external/nextcloud-server +++ b/external/nextcloud-server @@ -1 +1 @@ -Subproject commit 8896b40164f0e26c490c15514e97781e0037948c +Subproject commit 9c791972de9c2561a9b36c1a60e48c25315ecca5 diff --git a/packages/nextcloud/test/helper.dart b/packages/nextcloud/test/helper.dart index 80b75041..b1fcc05f 100644 --- a/packages/nextcloud/test/helper.dart +++ b/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'; diff --git a/specs/core.json b/specs/core.json index 8bb628a2..099589b7 100644 --- a/specs/core.json +++ b/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", diff --git a/specs/templates/appinfo_core.xml b/specs/templates/appinfo_core.xml index 803a3c55..465dec2e 100644 --- a/specs/templates/appinfo_core.xml +++ b/specs/templates/appinfo_core.xml @@ -4,6 +4,6 @@ Core Core functionality of Nextcloud - 25.0.1 + 25.0.2 agpl diff --git a/specs/templates/core.json b/specs/templates/core.json index bfb2768d..e06b9aff 100644 --- a/specs/templates/core.json +++ b/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", diff --git a/specs/templates/notifications.json b/specs/templates/notifications.json index 28d693a0..e57bedd8 100644 --- a/specs/templates/notifications.json +++ b/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" + } + } + } + } + } + } } } } \ No newline at end of file diff --git a/tool/Dockerfile.dev b/tool/Dockerfile.dev index 1684e9e5..19bccaed 100644 --- a/tool/Dockerfile.dev +++ b/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