Update pattern to match ANR app by name
[portal/ric-dashboard.git] / webapp-frontend / src / app / services / e2-mgr / e2-mgr.service.ts
index f08face..7510567 100644 (file)
@@ -62,8 +62,12 @@ export class E2ManagerService {
     return this.httpClient.post(this.basePath + 'x2Setup', req);
   }
 
-  disconnectAllRAN() {
-    return this.httpClient.delete((this.basePath + 'disconnectAllRAN'), { observe: 'response' });
+  /**
+   * Sends a request to drop all RAN connections
+   * @returns Observable
+   */
+  nodebDelete() {
+    return this.httpClient.delete((this.basePath + 'nodeb'), { observe: 'response' });
   }
 
 }