Merge pull request #3598 from overleaf/ae-put-json

Add putJSON helper

GitOrigin-RevId: 79d73ceb49836799b3215d9b10979da7cda982c4
This commit is contained in:
Miguel Serrano 2021-01-27 11:07:26 +01:00 committed by Copybot
parent 244dfffb6b
commit ea07c7bfea

View file

@ -13,6 +13,10 @@ export function postJSON(path, options) {
return fetchJSON(path, { ...options, method: 'POST' })
}
export function putJSON(path, options) {
return fetchJSON(path, { ...options, method: 'PUT' })
}
export function deleteJSON(path, options) {
return fetchJSON(path, { ...options, method: 'DELETE' })
}