We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f4577 commit 9935185Copy full SHA for 9935185
http/routes/routes.go
@@ -9,4 +9,5 @@ import (
9
func Apply(e *echo.Echo, services *core.Services) {
10
Jobs(e, services)
11
Calls(e, services)
12
+ Timezones(e, services)
13
}
http/routes/timezones.go
@@ -17,7 +17,7 @@ type timezoneCollection struct {
17
func Timezones(e *echo.Echo, services *core.Services) {
18
// Get server timezones
19
// GET /timezones
20
- e.GET("/timezones", func(c echo.Context) error {
+ e.GET("/scheduler-time-zones", func(c echo.Context) error {
21
tag := "timezones"
22
services.Logger.Info(tag, "trying to get timezones")
23
0 commit comments