mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 05:11:19 +00:00
Merge pull request #3598 from overleaf/ae-put-json
Add putJSON helper GitOrigin-RevId: 79d73ceb49836799b3215d9b10979da7cda982c4
This commit is contained in:
parent
244dfffb6b
commit
ea07c7bfea
1 changed files with 4 additions and 0 deletions
|
@ -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' })
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue