mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Disable Activity Panel by default.
You'll need to set `DevActivityPanel` (or `ND_DEVACTIVITYPANEL`) to `true` to re-enable it
This commit is contained in:
parent
5137407377
commit
63171368ed
5 changed files with 6 additions and 6 deletions
|
@ -53,7 +53,7 @@ type configOptions struct {
|
||||||
DevPreCacheAlbumArtwork bool
|
DevPreCacheAlbumArtwork bool
|
||||||
DevFastAccessCoverArt bool
|
DevFastAccessCoverArt bool
|
||||||
DevOldCacheLayout bool
|
DevOldCacheLayout bool
|
||||||
DevActivityMenu bool
|
DevActivityPanel bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type scannerOptions struct {
|
type scannerOptions struct {
|
||||||
|
@ -143,7 +143,7 @@ func init() {
|
||||||
viper.SetDefault("devprecachealbumartwork", false)
|
viper.SetDefault("devprecachealbumartwork", false)
|
||||||
viper.SetDefault("devoldcachelayout", false)
|
viper.SetDefault("devoldcachelayout", false)
|
||||||
viper.SetDefault("devFastAccessCoverArt", false)
|
viper.SetDefault("devFastAccessCoverArt", false)
|
||||||
viper.SetDefault("devactivitymenu", true)
|
viper.SetDefault("devactivitypanel", false)
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitConfig(cfgFile string) {
|
func InitConfig(cfgFile string) {
|
||||||
|
|
|
@ -35,7 +35,7 @@ func serveIndex(ds model.DataStore, fs http.FileSystem) http.HandlerFunc {
|
||||||
"enableTranscodingConfig": conf.Server.EnableTranscodingConfig,
|
"enableTranscodingConfig": conf.Server.EnableTranscodingConfig,
|
||||||
"gaTrackingId": conf.Server.GATrackingID,
|
"gaTrackingId": conf.Server.GATrackingID,
|
||||||
"enableDownloads": conf.Server.EnableDownloads,
|
"enableDownloads": conf.Server.EnableDownloads,
|
||||||
"devActivityMenu": conf.Server.DevActivityMenu,
|
"devActivityPanel": conf.Server.DevActivityPanel,
|
||||||
"devFastAccessCoverArt": conf.Server.DevFastAccessCoverArt,
|
"devFastAccessCoverArt": conf.Server.DevFastAccessCoverArt,
|
||||||
}
|
}
|
||||||
j, err := json.Marshal(appConfig)
|
j, err := json.Marshal(appConfig)
|
||||||
|
|
|
@ -61,7 +61,7 @@ const App = () => (
|
||||||
|
|
||||||
const Admin = (props) => {
|
const Admin = (props) => {
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
if (config.devActivityMenu) {
|
if (config.devActivityPanel) {
|
||||||
setDispatch(dispatch)
|
setDispatch(dispatch)
|
||||||
authProvider
|
authProvider
|
||||||
.checkAuth()
|
.checkAuth()
|
||||||
|
|
|
@ -10,7 +10,7 @@ const defaultConfig = {
|
||||||
enableDownloads: true,
|
enableDownloads: true,
|
||||||
welcomeMessage: '',
|
welcomeMessage: '',
|
||||||
gaTrackingId: '',
|
gaTrackingId: '',
|
||||||
devActivityMenu: true,
|
devActivityPanel: true,
|
||||||
devFastAccessCoverArt: false,
|
devFastAccessCoverArt: false,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ const CustomUserMenu = ({ onClick, ...rest }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{config.devActivityMenu && permissions === 'admin' && <ActivityPanel />}
|
{config.devActivityPanel && permissions === 'admin' && <ActivityPanel />}
|
||||||
<UserMenu {...rest}>
|
<UserMenu {...rest}>
|
||||||
<PersonalMenu sidebarIsOpen={true} onClick={onClick} />
|
<PersonalMenu sidebarIsOpen={true} onClick={onClick} />
|
||||||
<Divider />
|
<Divider />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue