diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-19 10:24:36 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-05-29 09:21:26 +0200 |
commit | 923ff87da2761fd88a8ca269ac1ef403abb583d2 (patch) | |
tree | 506ee2a83cb21e5303d486afefde7542f3207dbf /client/src/app/shared/bulk | |
parent | 444c0a0e017824fb4ce526281a22c4abe0a13c50 (diff) | |
download | PeerTube-923ff87da2761fd88a8ca269ac1ef403abb583d2.tar.gz PeerTube-923ff87da2761fd88a8ca269ac1ef403abb583d2.tar.zst PeerTube-923ff87da2761fd88a8ca269ac1ef403abb583d2.zip |
Add bulk comment actions on account dropdown
Diffstat (limited to 'client/src/app/shared/bulk')
-rw-r--r-- | client/src/app/shared/bulk/bulk.service.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/client/src/app/shared/bulk/bulk.service.ts b/client/src/app/shared/bulk/bulk.service.ts new file mode 100644 index 000000000..b00db31ec --- /dev/null +++ b/client/src/app/shared/bulk/bulk.service.ts | |||
@@ -0,0 +1,24 @@ | |||
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 | } | ||