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

@@ -88,5 +88,8 @@ internal class HeadlessModule(private val appDir: File) {
internal fun provideObjectMapper() = ObjectMapper()
@Provides
internal fun provideFeatureFlags() = FeatureFlags { false }
internal fun provideFeatureFlags() = object : FeatureFlags {
override fun shouldEnableImageAttachments() = false
override fun shouldEnableProfilePictures() = false
}
}