Implement UI for setting profile pictures

This commit is contained in:
Sebastian Kürten
2021-01-21 09:33:47 -03:00
committed by Torsten Grote
parent f819930570
commit 43c6ae4258
19 changed files with 527 additions and 29 deletions
@@ -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;
}
};
}
}