mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add EnableUserEditing
, to control whether a regular user can change their own details (default true
)
This commit is contained in:
parent
2ff1c79b64
commit
7feda4bea4
6 changed files with 22 additions and 0 deletions
|
@ -42,6 +42,7 @@ type configOptions struct {
|
|||
EnableGravatar bool
|
||||
EnableFavourites bool
|
||||
EnableStarRating bool
|
||||
EnableUserEditing bool
|
||||
DefaultTheme string
|
||||
GATrackingID string
|
||||
EnableLogRedacting bool
|
||||
|
@ -148,6 +149,7 @@ func init() {
|
|||
viper.SetDefault("enablegravatar", false)
|
||||
viper.SetDefault("enablefavourites", true)
|
||||
viper.SetDefault("enablestarrating", true)
|
||||
viper.SetDefault("enableuserediting", true)
|
||||
viper.SetDefault("defaulttheme", "Dark")
|
||||
viper.SetDefault("gatrackingid", "")
|
||||
viper.SetDefault("enablelogredacting", true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue