From f3383c6a45db8c7776c23cec9b20a61341996f67 Mon Sep 17 00:00:00 2001 From: Arsalan Ul Haq Sohni Date: Tue, 2 Dec 2025 11:49:30 +0100 Subject: [PATCH 1/2] docs: remove developer documentation link Signed-off-by: Arsalan Ul Haq Sohni --- apps/settings/lib/Controller/AppSettingsController.php | 1 - apps/settings/src/views/AppStoreNavigation.vue | 1 - apps/settings/tests/Controller/AppSettingsControllerTest.php | 4 ++-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php index bd713cab2013a..b0a1b5a49dbf7 100644 --- a/apps/settings/lib/Controller/AppSettingsController.php +++ b/apps/settings/lib/Controller/AppSettingsController.php @@ -92,7 +92,6 @@ public function viewApps(): TemplateResponse { $this->initialState->provideInitialState('appstoreEnabled', $this->config->getSystemValueBool('appstoreenabled', true)); $this->initialState->provideInitialState('appstoreBundles', $this->getBundles()); - $this->initialState->provideInitialState('appstoreDeveloperDocs', $this->urlGenerator->linkToDocs('developer-manual')); $this->initialState->provideInitialState('appstoreUpdateCount', count($this->getAppsWithUpdates())); if ($this->appManager->isEnabledForAnyone('app_api')) { diff --git a/apps/settings/src/views/AppStoreNavigation.vue b/apps/settings/src/views/AppStoreNavigation.vue index 83191baac40bb..6cac690bb2d0d 100644 --- a/apps/settings/src/views/AppStoreNavigation.vue +++ b/apps/settings/src/views/AppStoreNavigation.vue @@ -115,7 +115,6 @@ import NcLoadingIcon from '@nextcloud/vue/components/NcLoadingIcon' import APPSTORE_CATEGORY_ICONS from '../constants/AppstoreCategoryIcons.ts' const appstoreEnabled = loadState('settings', 'appstoreEnabled', true) -const developerDocsUrl = loadState('settings', 'appstoreDeveloperDocs', '') const store = useAppsStore() const categories = computed(() => store.categories) diff --git a/apps/settings/tests/Controller/AppSettingsControllerTest.php b/apps/settings/tests/Controller/AppSettingsControllerTest.php index 392bb7b561d17..dfd3628eb386d 100644 --- a/apps/settings/tests/Controller/AppSettingsControllerTest.php +++ b/apps/settings/tests/Controller/AppSettingsControllerTest.php @@ -171,7 +171,7 @@ public function testViewApps(): void { ->with('core_apps'); $this->initialState - ->expects($this->exactly(4)) + ->expects($this->exactly(3)) ->method('provideInitialState'); $policy = new ContentSecurityPolicy(); @@ -204,7 +204,7 @@ public function testViewAppsAppstoreNotEnabled(): void { ->with('core_apps'); $this->initialState - ->expects($this->exactly(4)) + ->expects($this->exactly(3)) ->method('provideInitialState'); $policy = new ContentSecurityPolicy(); From c151c89cc391027cc15ff6d61e09849a36c77c32 Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Tue, 20 Jan 2026 09:57:20 +0000 Subject: [PATCH 2/2] chore(assets): Recompile assets Signed-off-by: nextcloud-command