diff --git a/pkg/internal/http/api/index.go b/pkg/internal/http/api/index.go index 1be11d1..32164eb 100644 --- a/pkg/internal/http/api/index.go +++ b/pkg/internal/http/api/index.go @@ -5,11 +5,11 @@ import ( ) func MapAPIs(app *fiber.App, baseURL string) { - app.Get("/.well-known/openid-configuration", getOidcConfiguration) - app.Get("/.well-known/jwks", getJwk) - api := app.Group(baseURL).Name("API") { + api.Get("/well-known/openid-configuration", getOidcConfiguration) + api.Get("/well-known/jwks", getJwk) + checkIn := api.Group("/check-in").Name("Daily Check In API") { checkIn.Get("/", listCheckInRecord)