Implement UI for setting profile pictures

This commit is contained in:
Sebastian Kürten
2020-11-24 16:18:52 +01:00
committed by Torsten Grote
parent f819930570
commit 43c6ae4258
19 changed files with 527 additions and 29 deletions

View File

@@ -22,6 +22,17 @@ public class BrambleCoreIntegrationTestModule {
@Provides
FeatureFlags provideFeatureFlags() {
return () -> true;
return new FeatureFlags() {
@Override
public boolean shouldEnableImageAttachments() {
return true;
}
@Override
public boolean shouldEnableProfilePictures() {
return true;
}
};
}
}