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

@@ -339,6 +339,21 @@ public class AppModule {
public boolean shouldEnableDisappearingMessages() {
return true;
}
@Override
public boolean shouldEnablePrivateGroupsInCore() {
return true;
}
@Override
public boolean shouldEnableForumsInCore() {
return true;
}
@Override
public boolean shouldEnableBlogsInCore() {
return true;
}
};
}
}