A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

auth/token needs GET

+1 -6
+1 -1
cmd/appview/serve.go
··· 393 393 return nil // All errors are non-fatal 394 394 }) 395 395 396 - mainRouter.Post("/auth/token", tokenHandler.ServeHTTP) 396 + mainRouter.Get("/auth/token", tokenHandler.ServeHTTP) 397 397 398 398 // Device authorization endpoints (public) 399 399 mainRouter.Handle("/auth/device/code", &uihandlers.DeviceCodeHandler{
-5
pkg/auth/token/handler.go
··· 213 213 return 214 214 } 215 215 } 216 - 217 - // RegisterRoutes registers the token handler with the provided mux 218 - func (h *Handler) RegisterRoutes(mux *http.ServeMux) { 219 - mux.Handle("/auth/token", h) 220 - }