Add feature flag for private message deletion.

This commit is contained in:
akwizgran
2019-10-09 16:22:04 +01:00
parent a23e0699d8
commit 249b85cd26
6 changed files with 19 additions and 0 deletions

View File

@@ -29,6 +29,11 @@ public class BrambleCoreIntegrationTestModule {
public boolean shouldEnableRemoteContacts() {
return true;
}
@Override
public boolean shouldEnablePrivateMessageDeletion() {
return true;
}
};
}
}