aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/RecipesApi.js
blob: 0573dacaf78c2a8cb0a910552dce91bb343bfec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default class ServicesApi {
  constructor(server) {
    this.server = server;
  }

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

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

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