Removed debugging
This commit is contained in:
parent
f59917e721
commit
2d81330b27
2 changed files with 1 additions and 2 deletions
|
@ -120,6 +120,7 @@ Teams sind global, d.h. Ein Team kann mehrere Namespaces verwalten.
|
||||||
* [x] Bearbeiten
|
* [x] Bearbeiten
|
||||||
* [ ] Löschen
|
* [ ] Löschen
|
||||||
* [ ] Teams hinzufügen. Der Nutzer kriegt nur Teams angezeigt die er erstellt hat.
|
* [ ] Teams hinzufügen. Der Nutzer kriegt nur Teams angezeigt die er erstellt hat.
|
||||||
|
* [x] Alle Listen eines Namespaces anzeigen
|
||||||
* [ ] Listen
|
* [ ] Listen
|
||||||
* [ ] Listen zu einem Namespace hinzufügen
|
* [ ] Listen zu einem Namespace hinzufügen
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ import (
|
||||||
"git.kolaente.de/konrad/list/models"
|
"git.kolaente.de/konrad/list/models"
|
||||||
"github.com/labstack/echo"
|
"github.com/labstack/echo"
|
||||||
"net/http"
|
"net/http"
|
||||||
"fmt"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetListsByNamespaceID(c echo.Context) error {
|
func GetListsByNamespaceID(c echo.Context) error {
|
||||||
|
@ -47,7 +46,6 @@ func GetListsByNamespaceID(c echo.Context) error {
|
||||||
if models.IsErrNamespaceDoesNotExist(err) {
|
if models.IsErrNamespaceDoesNotExist(err) {
|
||||||
return c.JSON(http.StatusNotFound, models.Message{"Namespace not found."})
|
return c.JSON(http.StatusNotFound, models.Message{"Namespace not found."})
|
||||||
}
|
}
|
||||||
fmt.Println(err)
|
|
||||||
return c.JSON(http.StatusInternalServerError, models.Message{"An error occured."})
|
return c.JSON(http.StatusInternalServerError, models.Message{"An error occured."})
|
||||||
}
|
}
|
||||||
return c.JSON(http.StatusOK, lists)
|
return c.JSON(http.StatusOK, lists)
|
||||||
|
|
Loading…
Reference in a new issue