mirror of
https://github.com/makeplane/plane.git
synced 2025-12-28 16:06:33 +01:00
* feat: implement webhook logging to MongoDB and fallback to database (#7887) - Added a new function `save_webhook_log` to log webhook requests and responses to MongoDB, with a fallback to the database if the MongoDB save fails. - Updated the `webhook_send_task` to utilize the new logging function. - Modified the `get_webhook_logs_queryset` to order logs by creation date and adjusted the chunk size for iteration. * refactor: clean up log data formatting in save_webhook_log function * fix: update retry_count type in save_webhook_log function