You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
274 B

  1. import ApiService from '@/services/api.service'
  2. class StatisticsService {
  3. constructor() {
  4. this.request = new ApiService()
  5. }
  6. getStatistics(projectId) {
  7. return this.request.get(`/projects/${projectId}/statistics`)
  8. }
  9. }
  10. export default new StatisticsService()