Skip to content

Commit

Permalink
docs: apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Bryann Valderrama <64033729+BryanttV@users.noreply.github.com>
  • Loading branch information
mariajgrimaldi and BryanttV authored Feb 19, 2025
1 parent ddce729 commit f38ad69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quickstarts/use-events-to-call-webhook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The following is the implementation for the :term:`event receivers <Event Receiv

.. code-block:: python
# File openedx_events_2_zapier/receivers.py
# File openedx_events_2_zapier/apps.py
class OpenedxEvents2ZapierConfig(AppConfig):
"""
Configuration for the openedx_events_2_zapier Django application.
Expand All @@ -58,7 +58,7 @@ The following is the implementation for the :term:`event receivers <Event Receiv
"""Perform initialization tasks required for the plugin."""
from openedx_events_2_zapier import handlers
# File openedx_events_2_zapier/receivers.py
# File openedx_events_2_zapier/handlers.py
@receiver(STUDENT_REGISTRATION_COMPLETED)
def send_user_data_to_webhook(
signal, sender, user, metadata, **kwargs # pylint: disable=unused-argument
Expand Down

0 comments on commit f38ad69

Please sign in to comment.