From 3da9f5aea91db2a2d9660679ed81f7fad03c8ed0 Mon Sep 17 00:00:00 2001 From: Tucker Siegel <tgsiegel@terpmail.umd.edu> Date: Thu, 16 Mar 2023 15:46:38 -0400 Subject: [PATCH] make forecast public --- controllers/forecast_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/forecast_controller.go b/controllers/forecast_controller.go index 4c900fb..da80795 100644 --- a/controllers/forecast_controller.go +++ b/controllers/forecast_controller.go @@ -23,7 +23,7 @@ import ( // @Param plant_date query string true "Plant date RFC3339 format" // @Param mode query string true "Mode, rm (relative maturity) or gdds_to_maturity" // @Param value query int true "Value of mode" -// @Param comparison query int false "comparison. -1 for normals, or any int between 1981 and 2021 for a single year" default(-1) +// @Param comparison query int false "comparison. -1 for normals, or any int between 1981 and the prev. year" default(-1) // @Router /gdd/forecast/stages [get] func ForecastStages(c *fiber.Ctx) error { ctx := common.DawnCtx{FiberCtx: c} -- GitLab