Skip to content

Commit

Permalink
fix: verification is not a DELETE-method
Browse files Browse the repository at this point in the history
  • Loading branch information
modelrailroader authored and thorsten committed Jan 14, 2025
1 parent 69ccf3a commit 0bde626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/admin/assets/src/api/verification.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const getRemoteHashes = async (version) => {
export const verifyHashes = async (remoteHashes) => {
try {
const response = await fetch('./api/dashboard/verify', {
method: 'DELETE',
method: 'POST',
headers: {
Accept: 'application/json, text/plain, */*',
'Content-Type': 'application/json',
Expand Down

0 comments on commit 0bde626

Please sign in to comment.