mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #57661 from nextcloud/backport/56794/stable32
[stable32] docs(settings): Removing the developerDocsUrl
This commit is contained in:
commit
73dd3fedec
7 changed files with 8 additions and 13 deletions
|
|
@ -93,7 +93,6 @@ class AppSettingsController extends Controller {
|
|||
|
||||
$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()));
|
||||
|
||||
$groups = array_map(static fn (IGroup $group): array => [
|
||||
|
|
|
|||
|
|
@ -91,9 +91,6 @@
|
|||
</NcAppNavigationItem>
|
||||
</template>
|
||||
|
||||
<NcAppNavigationItem id="app-developer-docs"
|
||||
:name="t('settings', 'Developer documentation ↗')"
|
||||
:href="developerDocsUrl" />
|
||||
</template>
|
||||
</NcAppNavigation>
|
||||
</template>
|
||||
|
|
@ -115,7 +112,6 @@ import NcLoadingIcon from '@nextcloud/vue/components/NcLoadingIcon'
|
|||
import APPSTORE_CATEGORY_ICONS from '../constants/AppstoreCategoryIcons.ts'
|
||||
|
||||
const appstoreEnabled = loadState<boolean>('settings', 'appstoreEnabled', true)
|
||||
const developerDocsUrl = loadState<string>('settings', 'appstoreDeveloperDocs', '')
|
||||
|
||||
const store = useAppsStore()
|
||||
const categories = computed(() => store.categories)
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ class AppSettingsControllerTest extends TestCase {
|
|||
]);
|
||||
|
||||
$this->initialState
|
||||
->expects($this->exactly(5))
|
||||
->expects($this->exactly(4))
|
||||
->method('provideInitialState');
|
||||
|
||||
$policy = new ContentSecurityPolicy();
|
||||
|
|
@ -223,7 +223,7 @@ class AppSettingsControllerTest extends TestCase {
|
|||
]);
|
||||
|
||||
$this->initialState
|
||||
->expects($this->exactly(5))
|
||||
->expects($this->exactly(4))
|
||||
->method('provideInitialState');
|
||||
|
||||
$policy = new ContentSecurityPolicy();
|
||||
|
|
|
|||
4
dist/settings-apps-view-4529.js
vendored
4
dist/settings-apps-view-4529.js
vendored
File diff suppressed because one or more lines are too long
2
dist/settings-apps-view-4529.js.map
vendored
2
dist/settings-apps-view-4529.js.map
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue