aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/RecipesApi.ts
blob: 11d2241b5f9c199c535bed4fd048d58d3c45df4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export default class RecipesApi {
  server: any;

  constructor(server: any) {
    this.server = server;
  }

  all() {
    return this.server.getInstalledRecipes();
  }

  install(recipeId: string) {
    return this.server.getRecipePackage(recipeId);
  }

  update(recipes: any) {
    return this.server.getRecipeUpdates(recipes);
  }
}