mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-02 03:37:46 +08:00
23 lines
563 B
Go
23 lines
563 B
Go
package controller
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/goodrain/rainbond/api/handler"
|
|
|
|
httputil "github.com/goodrain/rainbond/util/http"
|
|
)
|
|
|
|
//GetRunningServices list all running service ids
|
|
func GetRunningServices(w http.ResponseWriter, r *http.Request) {
|
|
enterpriseID := chi.URLParam(r, "enterprise_id")
|
|
runningList, err := handler.GetServiceManager().GetEnterpriseRunningServices(enterpriseID)
|
|
if err != nil {
|
|
err.Handle(r, w)
|
|
return
|
|
}
|
|
httputil.ReturnNoFomart(r, w, 200, map[string]interface{}{"service_ids": runningList})
|
|
}
|