Skip to content

Commit 07ee8c6

Browse files
committed
fixup! feat: New User Agreements API
1 parent ef6e88a commit 07ee8c6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cms/envs/common.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -778,6 +778,9 @@ def make_lms_template_path(settings):
778778

779779
'common.djangoapps.xblock_django',
780780

781+
# Agreements
782+
'openedx.core.djangoapps.agreements',
783+
781784
# Catalog integration
782785
'openedx.core.djangoapps.catalog',
783786

openedx/core/djangoapps/agreements/migrations/0007_historicaluseragreement_useragreement_and_more.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
2121
(
2222
"name",
2323
models.CharField(
24-
help_text="Human-readable name for the agreement type. Will be displayed to users in alert to accept the agreement.",
24+
help_text="Human-readable name for the agreement type. Will be displayed to users in an alert to accept/reject the agreement.",
2525
max_length=255,
2626
),
2727
),
@@ -86,7 +86,7 @@ class Migration(migrations.Migration):
8686
(
8787
"name",
8888
models.CharField(
89-
help_text="Human-readable name for the agreement type. Will be displayed to users in alert to accept the agreement.",
89+
help_text="Human-readable name for the agreement type. Will be displayed to users in an alert to accept/reject the agreement.",
9090
max_length=255,
9191
),
9292
),

0 commit comments

Comments
 (0)