mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			693 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			693 B
		
	
	
	
		
			TypeScript
		
	
	
import { BulkRemoveCommentsOfBody } from "@shared/models/bulk/bulk-remove-comments-of-body.model"
 | 
						|
import { makePostBodyRequest } from "../requests/requests"
 | 
						|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
 | 
						|
 | 
						|
function bulkRemoveCommentsOf (options: {
 | 
						|
  url: string
 | 
						|
  token: string
 | 
						|
  attributes: BulkRemoveCommentsOfBody
 | 
						|
  expectedStatus?: number
 | 
						|
}) {
 | 
						|
  const { url, token, attributes, expectedStatus } = options
 | 
						|
  const path = '/api/v1/bulk/remove-comments-of'
 | 
						|
 | 
						|
  return makePostBodyRequest({
 | 
						|
    url,
 | 
						|
    path,
 | 
						|
    token,
 | 
						|
    fields: attributes,
 | 
						|
    statusCodeExpected: expectedStatus || HttpStatusCode.NO_CONTENT_204
 | 
						|
  })
 | 
						|
}
 | 
						|
 | 
						|
export {
 | 
						|
  bulkRemoveCommentsOf
 | 
						|
}
 |