]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/bulk/bulk.service.ts
Add bulk comment actions on account dropdown
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / bulk / bulk.service.ts
1 import { HttpClient } from '@angular/common/http'
2 import { Injectable } from '@angular/core'
3 import { environment } from '../../../environments/environment'
4 import { RestExtractor, RestService } from '../rest'
5 import { BulkRemoveCommentsOfBody } from '../../../../../shared'
6 import { catchError } from 'rxjs/operators'
7
8 @Injectable()
9 export class BulkService {
10 static BASE_BULK_URL = environment.apiUrl + '/api/v1/bulk'
11
12 constructor (
13 private authHttp: HttpClient,
14 private restExtractor: RestExtractor,
15 private restService: RestService
16 ) { }
17
18 removeCommentsOf (body: BulkRemoveCommentsOfBody) {
19 const url = BulkService.BASE_BULK_URL + '/remove-comments-of'
20
21 return this.authHttp.post(url, body)
22 .pipe(catchError(err => this.restExtractor.handleError(err)))
23 }
24 }