move demo code to examples/

This commit is contained in:
Géry Debongnie
2019-03-15 12:15:37 +01:00
parent d99ea4c9f4
commit 46aedf78af
1638 changed files with 32 additions and 29 deletions
@@ -0,0 +1,17 @@
import { TestData } from "./test_data";
export class MockServer {
data: TestData;
constructor(data: TestData) {
this.data = data;
}
rpc(route: string, params: any): Promise<any> {
if (route === "web/action/load") {
const action = this.data.actions.find(a => a.id === params.action_id);
return Promise.resolve(action);
}
return Promise.resolve(true);
}
}