Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/14.6' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ulferts committed Oct 2, 2024
2 parents df3cd50 + 407a8d7 commit 254c202
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions docs/system-admin-guide/integrations/nextcloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,17 @@ sudo systemctl restart apache2

If that also not work please check the [instructions for setting up pretty URLs in Nextcloud](https://docs.nextcloud.com/server/22/admin_manual/installation/source_installation.html#pretty-urls). This usually also resolves the issue of stripped `Authorization` headers.

#### Files are not encrypted when using Nextcloud server-side encryption

> [!NOTE]
> If your Nextcloud server uses server-side encryption, the GroupFolder encryption needs to be manually enabled.
> This is relevant for automatically managed project folders, as the GroupFolder app is used in these cases.
To enable encryption for GroupFolders, run the following command on your Nextcloud server:

```shell
occ config:app:set groupfolders enable_encryption --value="true"
```

#### Project folders are not created or you do not have access

You have setup the *Project folder* in both environments (Nextcloud and OpenProject), but you cannot see any folder named `OpenProject` in the root directory of **Files** app in Nextcloud.
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/global_styles/layout/_base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
margin: 0 0 0 0
padding: 0
// Needed for Safari
height: calc(100vh - var(--header-height))
height: calc(100dvh - var(--header-height))
overflow-y: auto
overflow-x: hidden
background-color: var(--body-background)
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/global_styles/primer/_overrides.sass
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,7 @@ sub-header,
&:hover
background: var(--header-item-bg-hover-color)
color: var(--header-item-font-hover-color)

// Todo: Remove once https://github.com/primer/view_components/pull/3087 is merged
.FormControl-spacingWrapper
row-gap: var(--stack-gap-normal)

0 comments on commit 254c202

Please sign in to comment.