Implement change order endpoint

This commit is contained in:
bel
2019-12-01 17:31:30 -07:00
parent 48e8b91039
commit c756c005ac
8 changed files with 96 additions and 5 deletions

View File

@@ -21,10 +21,6 @@ func (a *Ajax) loadLists(w http.ResponseWriter, r *http.Request) error {
})
}
func (a *Ajax) changeOrder(w http.ResponseWriter, r *http.Request) error {
return errors.New("not impl")
}
func (a *Ajax) addList(w http.ResponseWriter, r *http.Request) error {
newList, err := list.New(r)
if err != nil {