mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Add option to enable (experimental) playlists in UI
This commit is contained in:
parent
0ca79eead4
commit
f881e2a54b
4 changed files with 11 additions and 5 deletions
|
@ -36,6 +36,7 @@ type nd struct {
|
|||
// DevFlags. These are used to enable/disable debugging and incomplete features
|
||||
DevLogSourceLine bool `default:"false"`
|
||||
DevAutoCreateAdminPassword string `default:""`
|
||||
DevEnableUIPlaylists bool `default:"false"`
|
||||
}
|
||||
|
||||
var Server = &nd{}
|
||||
|
|
|
@ -30,6 +30,7 @@ func ServeIndex(ds model.DataStore, fs http.FileSystem) http.HandlerFunc {
|
|||
"baseURL": strings.TrimSuffix(conf.Server.BaseURL, "/"),
|
||||
"loginBackgroundURL": conf.Server.UILoginBackgroundURL,
|
||||
"enableTranscodingConfig": conf.Server.EnableTranscodingConfig,
|
||||
"enablePlaylists": conf.Server.DevEnableUIPlaylists,
|
||||
}
|
||||
j, err := json.Marshal(appConfig)
|
||||
if err != nil {
|
||||
|
|
|
@ -14,6 +14,7 @@ import artist from './artist'
|
|||
import playlist from './playlist'
|
||||
import { Player, playQueueReducer } from './audioplayer'
|
||||
import { albumViewReducer } from './album/albumState'
|
||||
import config from './config'
|
||||
import customRoutes from './routes'
|
||||
import themeReducer from './personal/themeReducer'
|
||||
import createAdminStore from './store/createAdminStore'
|
||||
|
@ -47,11 +48,13 @@ const App = () => (
|
|||
<Resource name="album" {...album} options={{ subMenu: 'library' }} />,
|
||||
<Resource name="artist" {...artist} options={{ subMenu: 'library' }} />,
|
||||
<Resource name="song" {...song} options={{ subMenu: 'library' }} />,
|
||||
<Resource
|
||||
name="playlist"
|
||||
{...playlist}
|
||||
options={{ subMenu: 'library' }}
|
||||
/>,
|
||||
config.enablePlaylists && (
|
||||
<Resource
|
||||
name="playlist"
|
||||
{...playlist}
|
||||
options={{ subMenu: 'library' }}
|
||||
/>
|
||||
),
|
||||
permissions === 'admin' ? (
|
||||
<Resource name="user" {...user} options={{ subMenu: 'settings' }} />
|
||||
) : null,
|
||||
|
|
|
@ -7,6 +7,7 @@ const defaultConfig = {
|
|||
baseURL: '',
|
||||
loginBackgroundURL: 'https://source.unsplash.com/random/1600x900?music',
|
||||
enableTranscodingConfig: true,
|
||||
enablePlaylists: true,
|
||||
}
|
||||
|
||||
let config
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue