func createRoute(db *postgres.DB, rc routerc.Client, appID string, route *router.Route) error { route.ParentRef = routeParentRef(appID) if err := schema.Validate(route); err != nil { return err } return rc.CreateRoute(route) }
func createRoute(app *ct.App, router routerc.Client, route router.Route, r ResponseHelper) { route.ParentRef = routeParentRef(app) if err := router.CreateRoute(&route); err != nil { r.Error(err) return } r.JSON(200, &route) }