mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Initial Last.fm UI implementation
This commit is contained in:
parent
0495e421fe
commit
8ee5c1f245
2 changed files with 63 additions and 12 deletions
|
@ -15,6 +15,7 @@ import (
|
|||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/ui"
|
||||
"github.com/navidrome/navidrome/utils"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
|
@ -84,6 +85,15 @@ func (s *Server) initRoutes() {
|
|||
r.Post("/createAdmin", createAdmin(s.ds))
|
||||
})
|
||||
|
||||
r.Get("/api/lastfm/link/status", func(w http.ResponseWriter, r *http.Request) {
|
||||
rs := "false"
|
||||
c := utils.ParamInt(r, "c", 0)
|
||||
if (c == 4) {
|
||||
rs = "true"
|
||||
}
|
||||
_, _ = w.Write([]byte(rs))
|
||||
})
|
||||
|
||||
// Redirect root to UI URL
|
||||
r.Get("/*", func(w http.ResponseWriter, r *http.Request) {
|
||||
http.Redirect(w, r, s.appRoot+"/", http.StatusFound)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue