We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8d69d commit 960ce3dCopy full SHA for 960ce3d
course-matrix/backend/src/controllers/sharesController.ts
@@ -419,11 +419,9 @@ export default {
419
return res.status(400).json({ error: deleteError.message });
420
}
421
422
- return res
423
- .status(200)
424
- .json({
425
- message: `Sharing record: ${id} of calendar: ${calendar_id} deleted successfully`,
426
- });
+ return res.status(200).json({
+ message: `Sharing record: ${id} of calendar: ${calendar_id} deleted successfully`,
+ });
427
} catch (error) {
428
return res.status(500).send({ error });
429
0 commit comments