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
272 B

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