From 93ae7e0a1ca84fd2df902b7c8d94cdedb671bed6 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 13 Feb 2023 16:05:01 +0100 Subject: dashboard: move all cron endpoints to cron/ This lets us keep only one access rule and reliefs from the need to keep handlers and app.yaml in sync for cron jobs that'll be added in the future. --- dashboard/app/util_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard/app/util_test.go') diff --git a/dashboard/app/util_test.go b/dashboard/app/util_test.go index a0fce8d16..e82d549cb 100644 --- a/dashboard/app/util_test.go +++ b/dashboard/app/util_test.go @@ -364,7 +364,7 @@ func (c *Ctx) expectNoEmail() { } func (c *Ctx) updRetestReproJobs() { - _, err := c.GET("/retest_repros") + _, err := c.GET("/cron/retest_repros") c.expectOK(err) } -- cgit mrf-deployment