Add feature flags for private groups, forums and blogs

This commit is contained in:
Sebastian Kürten
2022-01-06 11:04:18 +01:00
parent 65be2d2b26
commit 707802c459
10 changed files with 109 additions and 26 deletions

View File

@@ -107,5 +107,8 @@ internal class HeadlessModule(private val appDir: File) {
override fun shouldEnableImageAttachments() = false
override fun shouldEnableProfilePictures() = false
override fun shouldEnableDisappearingMessages() = false
override fun shouldEnablePrivateGroupsInCore() = false
override fun shouldEnableForumsInCore() = true
override fun shouldEnableBlogsInCore() = true
}
}