TODO: move completed tasks to different namespace else super slow load active tasks at scale

changeListOrder implemented
This commit is contained in:
bel
2019-12-05 17:48:49 -07:00
parent 0f49595f0b
commit 9752acbd76
2 changed files with 29 additions and 1 deletions

View File

@@ -20,6 +20,12 @@ func (rc readCloser) Close() error {
return nil
}
func GetAll(r *http.Request, k string) []string {
r.ParseForm()
v, _ := r.Form[k]
return v
}
func Get(r *http.Request, k string) string {
s := r.FormValue(k)
if s == "" {