summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/services/environments_service.js
blob: 76296c83d113001a420de34def120f461b512465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* eslint-disable class-methods-use-this */
import Vue from 'vue';

export default class EnvironmentsService {
  constructor(endpoint) {
    this.environments = Vue.resource(endpoint);
  }

  get(scope, page) {
    return this.environments.get({ scope, page });
  }

  postAction(endpoint) {
    return Vue.http.post(endpoint, {}, { emulateJSON: true });
  }
}