Update WellKnown & HomeserverConfiguration for mandatory backup

This commit is contained in:
Arnaud Ringenbach
2022-03-09 10:40:33 +01:00
parent 1af1da145f
commit 3325c5341d
10 changed files with 201 additions and 19 deletions

View File

@@ -22,14 +22,14 @@ final class HomeserverConfiguration: NSObject {
// Note: Use an object per configuration subject when there is multiple properties related
let jitsi: HomeserverJitsiConfiguration
let isE2EEByDefaultEnabled: Bool
let encryption: HomeserverEncryptionConfiguration
let tileServer: HomeserverTileServerConfiguration
init(jitsi: HomeserverJitsiConfiguration,
isE2EEByDefaultEnabled: Bool,
encryption: HomeserverEncryptionConfiguration,
tileServer: HomeserverTileServerConfiguration) {
self.jitsi = jitsi
self.isE2EEByDefaultEnabled = isE2EEByDefaultEnabled
self.encryption = encryption
self.tileServer = tileServer
}
}