fix: #12543, use PATCH

This commit is contained in:
Barış Soner Uşaklı
2024-05-03 10:12:04 -04:00
parent 8a1b281b93
commit 420c8999c0

View File

@@ -112,7 +112,7 @@ export function post(route, data, onSuccess) {
export function patch(route, data, onSuccess) {
return call({
url: route,
method: 'patch',
method: 'PATCH',
data,
headers: {
'x-csrf-token': config.csrf_token,