From 00a8d3fa128647cd446db1df123981c99f4b98fd Mon Sep 17 00:00:00 2001 From: Maria Grimaldi Date: Fri, 10 Jan 2025 12:51:47 +0100 Subject: [PATCH] refactor: address PR reviews --- docs/how-tos/consume-an-event.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/how-tos/consume-an-event.rst b/docs/how-tos/consume-an-event.rst index a2ea7642..95ec15eb 100644 --- a/docs/how-tos/consume-an-event.rst +++ b/docs/how-tos/consume-an-event.rst @@ -72,8 +72,6 @@ An :term:`Event Receiver` is simply a function that listens for a specific event These event receivers are usually implemented independently of the service in an `Open edX Django plugins`_ and are registered in the ``handlers.py`` (according to `OEP-49`_) file of the plugin. You can review the ``handlers.py`` file of the `openedx-events-2-zapier`_ plugin to understand how the event receivers are implemented and connected to the events. -.. TODO: change receivers.py in openedx-events-2-zapier to handlers.py - Consider the following when implementing the event receiver: - Limit each receiver to a single responsibility to make the code easier to maintain and test.