mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
Merge pull request #3598 from overleaf/ae-put-json
Add putJSON helper GitOrigin-RevId: 79d73ceb49836799b3215d9b10979da7cda982c4
This commit is contained in:
@@ -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' })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user