mirror of https://github.com/portainer/portainer
30 lines
877 B
Go
30 lines
877 B
Go
package edgeupdateschedules
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/libhttp/response"
|
|
"github.com/portainer/portainer/api/edgetypes"
|
|
"github.com/portainer/portainer/api/http/middlewares"
|
|
)
|
|
|
|
// @id EdgeUpdateScheduleInspect
|
|
// @summary Returns the Edge Update Schedule with the given ID
|
|
// @description **Access policy**: administrator
|
|
// @tags edge_update_schedules
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @produce json
|
|
// @success 200 {object} edgetypes.UpdateSchedule
|
|
// @failure 500
|
|
// @router /edge_update_schedules/{id} [get]
|
|
func (handler *Handler) inspect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
item, err := middlewares.FetchItem[edgetypes.UpdateSchedule](r, contextKey)
|
|
if err != nil {
|
|
return httperror.InternalServerError(err.Error(), err)
|
|
}
|
|
|
|
return response.JSON(w, item)
|
|
}
|