Merge pull request #58424 from nextcloud/backport/58262/stable33

[stable33] fix(external_storage): hide local storage as an option for users
This commit is contained in:
Kent Delante 2026-02-19 20:29:59 +08:00 committed by GitHub
commit a350bcb8ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -17,6 +17,7 @@ const userMounting = loadState<{
}>('files_external', 'user-mounting')
const availableBackends = loadState<IBackend[]>('files_external', 'backends')
.filter((backend: IBackend) => backend.identifier !== 'local')
const allowUserMounting = ref(userMounting.allowUserMounting)
const allowedBackends = ref<string[]>(userMounting.allowedBackends)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long