mirror of https://github.com/portainer/portainer
22 lines
602 B
Go
22 lines
602 B
Go
|
package endpoints
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
httperror "github.com/portainer/libhttp/error"
|
||
|
"github.com/portainer/libhttp/request"
|
||
|
)
|
||
|
|
||
|
// DEPRECATED
|
||
|
func (handler *Handler) endpointStatusInspect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
||
|
endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
||
|
if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid environment identifier route variable", err}
|
||
|
}
|
||
|
|
||
|
url := fmt.Sprintf("/api/endpoints/%d/edge/status", endpointID)
|
||
|
http.Redirect(w, r, url, http.StatusPermanentRedirect)
|
||
|
return nil
|
||
|
}
|