mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Implement Last.FM Desktop Auth flow endpoints
This commit is contained in:
parent
8ee5c1f245
commit
502a719e96
8 changed files with 224 additions and 16 deletions
|
@ -15,7 +15,6 @@ import (
|
|||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/ui"
|
||||
"github.com/navidrome/navidrome/utils"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
|
@ -85,15 +84,6 @@ 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