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

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

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

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