Skip to content

Commit

Permalink
Merge pull request #2130 from openedx/ENT-8010/update-management-command
Browse files Browse the repository at this point in the history
feat: add more channels to management command
  • Loading branch information
hamzawaleed01 authored Jun 10, 2024
2 parents cabd681 + c18334b commit e914be4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Unreleased
----------
* nothing unreleased

[4.19.13]
---------
* feat: added more integrated channels in mark_learner_transmissions_transmitted_true management command

[4.19.12]
---------
* refactor: renamed ``career_engagement_network_message`` and 1 related field in ``EnterpriseCustomer`` model.
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "4.19.12"
__version__ = "4.19.13"
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ def handle(self, *args, **options):
('blackboard', 'BlackboardLearnerAssessmentDataTransmissionAudit'),
('canvas', 'CanvasLearnerDataTransmissionAudit'),
('degreed2', 'Degreed2LearnerDataTransmissionAudit'),
('degreed', 'DegreedLearnerDataTransmissionAudit'),
('sap_success_factors', 'SapSuccessFactorsLearnerDataTransmissionAudit'),
('cornerstone', 'CornerstoneLearnerDataTransmissionAudit'),
('canvas', 'CanvasLearnerAssessmentDataTransmissionAudit'),
]
for app_label, model_name in channel_learner_audit_models:
model_class = apps.get_model(app_label=app_label, model_name=model_name)
Expand Down

0 comments on commit e914be4

Please sign in to comment.