Enable upload backgrounds by default
This commit is contained in:
parent
caee123f9d
commit
c8605d6b3d
3 changed files with 7 additions and 7 deletions
|
@ -185,11 +185,11 @@ avatar:
|
||||||
|
|
||||||
backgrounds:
|
backgrounds:
|
||||||
# Whether to enable backgrounds for lists at all.
|
# Whether to enable backgrounds for lists at all.
|
||||||
enabled: false
|
enabled: true
|
||||||
providers:
|
providers:
|
||||||
upload:
|
upload:
|
||||||
# Whethere to enable uploaded list backgrounds
|
# Whethere to enable uploaded list backgrounds
|
||||||
enabled: false
|
enabled: true
|
||||||
unsplash:
|
unsplash:
|
||||||
# Whether to enable setting backgrounds from unsplash as list backgrounds
|
# Whether to enable setting backgrounds from unsplash as list backgrounds
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -228,11 +228,11 @@ avatar:
|
||||||
|
|
||||||
backgrounds:
|
backgrounds:
|
||||||
# Whether to enable backgrounds for lists at all.
|
# Whether to enable backgrounds for lists at all.
|
||||||
enabled: false
|
enabled: true
|
||||||
providers:
|
providers:
|
||||||
upload:
|
upload:
|
||||||
# Whethere to enable uploaded list backgrounds
|
# Whethere to enable uploaded list backgrounds
|
||||||
enabled: false
|
enabled: true
|
||||||
unsplash:
|
unsplash:
|
||||||
# Whether to enable setting backgrounds from unsplash as list backgrounds
|
# Whether to enable setting backgrounds from unsplash as list backgrounds
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -253,8 +253,8 @@ func InitDefaultConfig() {
|
||||||
AvatarProvider.setDefault("gravatar")
|
AvatarProvider.setDefault("gravatar")
|
||||||
AvatarGravaterExpiration.setDefault(3600)
|
AvatarGravaterExpiration.setDefault(3600)
|
||||||
// List Backgrounds
|
// List Backgrounds
|
||||||
BackgroundsEnabled.setDefault(false)
|
BackgroundsEnabled.setDefault(true)
|
||||||
BackgroundsUploadEnabled.setDefault(false)
|
BackgroundsUploadEnabled.setDefault(true)
|
||||||
BackgroundsUnsplashEnabled.setDefault(false)
|
BackgroundsUnsplashEnabled.setDefault(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue