mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			836 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			836 B
		
	
	
	
		
			Go
		
	
	
package edgestacks
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	httperror "github.com/portainer/portainer/pkg/libhttp/error"
 | 
						|
	"github.com/portainer/portainer/pkg/libhttp/response"
 | 
						|
)
 | 
						|
 | 
						|
// @id EdgeStackList
 | 
						|
// @summary Fetches the list of EdgeStacks
 | 
						|
// @description **Access policy**: administrator
 | 
						|
// @tags edge_stacks
 | 
						|
// @security ApiKeyAuth
 | 
						|
// @security jwt
 | 
						|
// @produce json
 | 
						|
// @success 200 {array} portainer.EdgeStack
 | 
						|
// @failure 500
 | 
						|
// @failure 400
 | 
						|
// @failure 503 "Edge compute features are disabled"
 | 
						|
// @router /edge_stacks [get]
 | 
						|
func (handler *Handler) edgeStackList(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
 | 
						|
	edgeStacks, err := handler.DataStore.EdgeStack().EdgeStacks()
 | 
						|
	if err != nil {
 | 
						|
		return httperror.InternalServerError("Unable to retrieve edge stacks from the database", err)
 | 
						|
	}
 | 
						|
 | 
						|
	return response.JSON(w, edgeStacks)
 | 
						|
}
 |