Deletion supported in context menu

This commit is contained in:
Piotr Pekala
2019-02-22 00:17:00 -08:00
parent fb1a64fe5d
commit f553c7a200
6 changed files with 123 additions and 0 deletions

View File

@ -53,6 +53,10 @@ export class MockedNodeService {
updatePosition(): Observable<Node> {
return of(this.node);
}
delete(server: Server, node: Node) {
return of();
}
}
export class MockedDrawingService {