mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
Disable public link expiration by default
This commit is contained in:
8
changelog/unreleased/storage-public-link-expiration.md
Normal file
8
changelog/unreleased/storage-public-link-expiration.md
Normal file
@@ -0,0 +1,8 @@
|
||||
Bugfix: Disable public link expiration by default
|
||||
|
||||
Tags: storage
|
||||
|
||||
The public link expiration was enabled by default and didn't have a default expiration span by default, which resulted in already expired public links coming from the public link quick action. We fixed this by disabling the public link expiration by default.
|
||||
|
||||
https://github.com/owncloud/ocis/issues/987
|
||||
https://github.com/owncloud/ocis/pull/1035
|
||||
@@ -139,7 +139,7 @@ func Frontend(cfg *config.Config) *cli.Command {
|
||||
},
|
||||
"ocs": map[string]interface{}{
|
||||
"share_prefix": cfg.Reva.Frontend.OCSSharePrefix,
|
||||
"prefix": cfg.Reva.Frontend.OCSPrefix,
|
||||
"prefix": cfg.Reva.Frontend.OCSPrefix,
|
||||
"config": map[string]interface{}{
|
||||
"version": "1.8",
|
||||
"website": "reva",
|
||||
@@ -196,7 +196,7 @@ func Frontend(cfg *config.Config) *cli.Command {
|
||||
},
|
||||
},
|
||||
"expire_date": map[string]interface{}{
|
||||
"enabled": true,
|
||||
"enabled": false,
|
||||
},
|
||||
},
|
||||
"user": map[string]interface{}{
|
||||
|
||||
Reference in New Issue
Block a user