64503: Content Source PUT request on form submit

This commit is contained in:
Kristof De Langhe
2019-08-20 17:28:28 +02:00
parent 764f532b99
commit 1b9bc2f7a3
5 changed files with 87 additions and 11 deletions

View File

@@ -369,6 +369,16 @@ export class ContentSourceRequest extends GetRequest {
}
}
export class UpdateContentSourceRequest extends PutRequest {
constructor(uuid: string, href: string, public body?: any, public options?: HttpOptions) {
super(uuid, href, body, options);
}
getResponseParser(): GenericConstructor<ResponseParsingService> {
return ContentSourceResponseParsingService;
}
}
/**
* Request to delete an object based on its identifier
*/