Merge pull request #3110 from owncloud/env-permission-endpoint

add STORAGE_PERMISSIONS_ENDPOINT env variable
This commit is contained in:
Willy Kloucek
2022-02-04 08:44:31 +01:00
committed by GitHub

View File

@@ -1764,5 +1764,11 @@ func structMappings(cfg *Config) []shared.EnvBinding {
EnvVars: []string{"STORAGE_METADATA_DRIVER_S3NG_BUCKET"},
Destination: &cfg.Reva.MetadataStorage.S3NG.Bucket,
},
// permissions
{
EnvVars: []string{"STORAGE_PERMISSIONS_ENDPOINT"},
Destination: &cfg.Reva.Permissions.Endpoint,
},
}
}