mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Expose Last.fm's ApiKey to UI
This commit is contained in:
parent
143cde37e5
commit
1f997357a9
8 changed files with 30 additions and 22 deletions
|
@ -209,6 +209,17 @@ var _ = Describe("serveIndex", func() {
|
|||
config := extractAppConfig(w.Body.String())
|
||||
Expect(config).To(HaveKeyWithValue("devEnableScrobble", false))
|
||||
})
|
||||
|
||||
It("sets the lastFMApiKey", func() {
|
||||
conf.Server.LastFM.ApiKey = "APIKEY-123"
|
||||
r := httptest.NewRequest("GET", "/index.html", nil)
|
||||
w := httptest.NewRecorder()
|
||||
|
||||
serveIndex(ds, fs)(w, r)
|
||||
|
||||
config := extractAppConfig(w.Body.String())
|
||||
Expect(config).To(HaveKeyWithValue("lastFMApiKey", "APIKEY-123"))
|
||||
})
|
||||
})
|
||||
|
||||
var appConfigRegex = regexp.MustCompile(`(?m)window.__APP_CONFIG__="([^"]*)`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue