diff --git a/changelog/unreleased/change-theme-handling b/changelog/unreleased/change-theme-handling index f16474be65e..816805a69c8 100644 --- a/changelog/unreleased/change-theme-handling +++ b/changelog/unreleased/change-theme-handling @@ -11,6 +11,7 @@ https://github.com/owncloud/web/issues/2404 https://github.com/owncloud/web/issues/8424 https://github.com/owncloud/web/issues/9403 https://github.com/owncloud/web/issues/9885 +https://github.com/owncloud/web/issues/9939 https://github.com/owncloud/web/pull/8855 https://github.com/owncloud/web/pull/9396 diff --git a/docs/getting-started.md b/docs/getting-started.md index 59afefa13cb..dd3ec35b7a2 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -79,8 +79,6 @@ Depending on the backend you are using, there are sample config files provided i - `options.tokenStorageLocal` Specifies whether the access token will be stored in the local storage when set to `true` or in the session storage when set to `false`. If stored in the local storage, login state will be persisted across multiple browser tabs, means no additional logins are required. Defaults to `true`. - `options.loginUrl` Specifies the target URL to the login page. This is helpful when an external IdP is used. This option is disabled by default. Example URL like: 'https://www.myidp.com/login'. - `options.logoutUrl` Adds a link to the user's profile page to point him to an external page, where he can manage his session and devices. This is helpful when an external IdP is used. This option is disabled by default. -- `options.imprintUrl` Specifies the target URL for the imprint link valid for the ocis instance in the account menu. -- `options.privacyUrl` Specifies the target URL for the privacy link valid for the ocis instance in the account menu. - `options.ocm.openRemotely` Specifies whether opening files in remote shares in their original ocm instance should be enabled. Defaults to `false`. - `options.userListRequiresFilter` Defines whether one or more filters must be set in order to list users in the Web admin settings. Set this option to 'true' if running in an environment with a lot of users and listing all users could slow down performance. Defaults to `false`. diff --git a/packages/web-app-files/package.json b/packages/web-app-files/package.json index 16b8cd0f24b..6b45593e2fd 100644 --- a/packages/web-app-files/package.json +++ b/packages/web-app-files/package.json @@ -28,6 +28,7 @@ "luxon": "3.0.1", "marked": "^4.0.12", "p-queue": "^6.6.2", + "pinia": "2.1.7", "qs": "6.11.2", "sanitize-html": "^2.7.0", "uuid": "9.0.1", diff --git a/packages/web-app-files/src/views/FilesDrop.vue b/packages/web-app-files/src/views/FilesDrop.vue index 2f99ba3f02c..07a0afaa00b 100644 --- a/packages/web-app-files/src/views/FilesDrop.vue +++ b/packages/web-app-files/src/views/FilesDrop.vue @@ -28,13 +28,14 @@