Skip to content

Commit

Permalink
fix: use correct subdomain in event_type of XBLOCK_SKILL_VERIFIED (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Graber committed Jun 1, 2023
1 parent 8b4274b commit 7c0044a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Change Log
Unreleased
----------

[8.0.1] - 2023-05-16
--------------------
Changed
~~~~~~~
* Fixed event_type of XBLOCK_SKILL_VERIFIED signal

[8.0.0] - 2023-05-16
--------------------
Changed
Expand Down
2 changes: 1 addition & 1 deletion openedx_events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
more information about the project.
"""

__version__ = "8.0.0"
__version__ = "8.0.1"
2 changes: 1 addition & 1 deletion openedx_events/learning/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
# .. event_description: Fired when an XBlock skill is verified.
# .. event_data: XBlockSkillVerificationData
XBLOCK_SKILL_VERIFIED = OpenEdxPublicSignal(
event_type="org.openedx.content_authoring.xblock.skill.verified.v1",
event_type="org.openedx.learning.xblock.skill.verified.v1",
data={
"xblock_info": XBlockSkillVerificationData,
}
Expand Down

0 comments on commit 7c0044a

Please sign in to comment.