vikunja-api/routes/api/v1/namespace_show.go

33 lines
706 B
Go
Raw Normal View History

2018-07-02 09:09:32 +02:00
package v1
import (
"github.com/labstack/echo"
"net/http"
)
2018-07-10 14:02:23 +02:00
// ShowNamespace ...
2018-07-02 09:09:32 +02:00
func ShowNamespace(c echo.Context) error {
// swagger:operation GET /namespaces/{namespaceID} namespaces getNamespace
// ---
// summary: gets one namespace with all todo items
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: namespaceID
// in: path
// description: ID of the namespace to show
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/Namespace"
// "400":
// "$ref": "#/responses/Message"
// "500":
// "$ref": "#/responses/Message"
2018-07-12 13:43:42 +02:00
return echo.NewHTTPError(http.StatusNotImplemented)
}