Finish delete endpoint

This commit is contained in:
2026-01-19 15:14:16 -07:00
parent 0b579800d5
commit d3e6c3863b
2 changed files with 7 additions and 6 deletions

View File

@@ -52,7 +52,9 @@ app.delete('/berrydash/profile/posts', context =>
app.all('*', () =>
jsonResponse(
{
message: 'No endpoint found (are you using the correct request method?)'
success: false,
message: 'No endpoint found (are you using the correct request method?)',
data: null
},
404
)