update endpoint name
parent
884bb88cd3
commit
94df201bf7
|
@ -55,7 +55,7 @@ func Init(mux *http.ServeMux) error {
|
|||
mux.HandleFunc("GET /savedata/newclear", handleNewClear)
|
||||
|
||||
// new session
|
||||
mux.HandleFunc("POST /savedata/update2", handleSaveData2)
|
||||
mux.HandleFunc("POST /savedata/updateall", handleSaveData2)
|
||||
|
||||
// daily
|
||||
mux.HandleFunc("GET /daily/seed", handleDailySeed)
|
||||
|
|
|
@ -334,6 +334,7 @@ type CombinedSaveData struct {
|
|||
SessionSlotId int `json:"sessionSlotId"`
|
||||
}
|
||||
|
||||
// TODO wrap this in a transaction
|
||||
func handleSaveData2(w http.ResponseWriter, r *http.Request) {
|
||||
var token []byte
|
||||
token, err := tokenFromRequest(r)
|
||||
|
|
Loading…
Reference in New Issue