Enable upload backgrounds by default
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2020-06-23 22:53:23 +02:00
parent caee123f9d
commit c8605d6b3d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 7 additions and 7 deletions

View File

@ -185,11 +185,11 @@ avatar:
backgrounds:
# Whether to enable backgrounds for lists at all.
enabled: false
enabled: true
providers:
upload:
# Whethere to enable uploaded list backgrounds
enabled: false
enabled: true
unsplash:
# Whether to enable setting backgrounds from unsplash as list backgrounds
enabled: false

View File

@ -228,11 +228,11 @@ avatar:
backgrounds:
# Whether to enable backgrounds for lists at all.
enabled: false
enabled: true
providers:
upload:
upload:
# Whethere to enable uploaded list backgrounds
enabled: false
enabled: true
unsplash:
# Whether to enable setting backgrounds from unsplash as list backgrounds
enabled: false

View File

@ -253,8 +253,8 @@ func InitDefaultConfig() {
AvatarProvider.setDefault("gravatar")
AvatarGravaterExpiration.setDefault(3600)
// List Backgrounds
BackgroundsEnabled.setDefault(false)
BackgroundsUploadEnabled.setDefault(false)
BackgroundsEnabled.setDefault(true)
BackgroundsUploadEnabled.setDefault(true)
BackgroundsUnsplashEnabled.setDefault(false)
}