-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Global Alumni in external course sync (#3330)
* feat: add Global Alumni in external course sync * refactor: made code generic and adjusted tests * refactor: added sync_daily in platform and refactored courses/task.py to be more generic * fix: test * fix: some issues * fix: some issues * fix: some issues * fix: issues after rebase * fix: some issues * fix: some issues * fix: pre-commit issues * fix: issues * fix: tests * test: add GA tests * fix: issues * fix: tests * fix: tests --------- Co-authored-by: Asad Ali <[email protected]>
- Loading branch information
1 parent
a19d3e8
commit d09c364
Showing
18 changed files
with
721 additions
and
454 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 4.2.16 on 2024-12-06 13:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("courses", "0040_alter_courserun_courseware_id"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="platform", | ||
name="sync_daily", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Select this option to enable daily syncing for external course platforms.", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.