[RIC-432] - Support Update eNB REST API - use RanListManager in red buttom and get...
[ric-plt/e2mgr.git] / E2Manager / httpserver / http_server.go
index 157f5bd..3ee48ef 100644 (file)
@@ -45,7 +45,7 @@ func initializeRoutes(router *mux.Router, rootController controllers.IRootContro
        r.HandleFunc("/health", rootController.HandleHealthCheckRequest).Methods(http.MethodGet)
 
        rr := r.PathPrefix("/nodeb").Subrouter()
-       rr.HandleFunc("/ids", nodebController.GetNodebIdList).Methods(http.MethodGet)
+       rr.HandleFunc("/states", nodebController.GetNodebIdList).Methods(http.MethodGet)
        rr.HandleFunc("/{ranName}", nodebController.GetNodeb).Methods(http.MethodGet)
        rr.HandleFunc("/enb", nodebController.AddEnb).Methods(http.MethodPost)
        rr.HandleFunc("/enb/{ranName}", nodebController.DeleteEnb).Methods(http.MethodDelete)