make tvshow navlink and pages and backend disableable with a command line parameter

This commit is contained in:
2021-06-08 21:55:54 +02:00
parent f7b7df5934
commit a60f5a30b8
9 changed files with 72 additions and 15 deletions

View File

@ -0,0 +1,11 @@
package settings
var tvShowEnabled bool
func TVShowsEnabled() bool {
return tvShowEnabled
}
func SetTVShowEnabled(enabled bool) {
tvShowEnabled = enabled
}