mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add flag to disable Scrobble config in the UI
This commit is contained in:
parent
a4f91b74d2
commit
ffa76bba6a
6 changed files with 60 additions and 0 deletions
|
@ -69,6 +69,7 @@ type configOptions struct {
|
|||
DevOldCacheLayout bool
|
||||
DevActivityPanel bool
|
||||
DevEnableShare bool
|
||||
DevEnableScrobble bool
|
||||
}
|
||||
|
||||
type scannerOptions struct {
|
||||
|
@ -227,6 +228,7 @@ func init() {
|
|||
viper.SetDefault("devFastAccessCoverArt", false)
|
||||
viper.SetDefault("devactivitypanel", true)
|
||||
viper.SetDefault("devenableshare", false)
|
||||
viper.SetDefault("devenablescrobble", false)
|
||||
}
|
||||
|
||||
func InitConfig(cfgFile string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue