Skip to content

Commit

Permalink
fix: delete event should return 200 not 207
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Jul 17, 2024
1 parent dea447b commit 38fc4ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions routes/calendar/calendar/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ module.exports = function (options) {
calendarId: ctx.state.params.calendarId,
user: ctx.state.user
});

ctx.status = 200;
ctx.body = '';
};

return {
Expand Down

0 comments on commit 38fc4ce

Please sign in to comment.