summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/services/job_service.js
blob: b746489c45c32226acecf52d29c8476094d85aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
import axios from '../../lib/utils/axios_utils';

export default class JobService {
  constructor(endpoint) {
    this.job = endpoint;
  }

  getJob() {
    return axios.get(this.job);
  }
}