Skip to content

Commit c8be8d6

Browse files
committed
temp: move more referenes to oel_authoring app
1 parent cfc0c82 commit c8be8d6

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.annotation_safe_list.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,43 @@ auth.User:
1919
".. pii_retirement": "consumer_api"
2020
contenttypes.ContentType:
2121
".. no_pii:": "This model has no PII"
22-
oel_collections.Collection:
22+
oel_authoring.Collection:
2323
".. no_pii:": "This model has no PII"
24-
oel_collections.CollectionPublishableEntity:
24+
oel_authoring.CollectionPublishableEntity:
2525
".. no_pii:": "This model has no PII"
26-
oel_components.Component:
26+
oel_authoring.Component:
2727
".. no_pii:": "This model has no PII"
28-
oel_components.ComponentType:
28+
oel_authoring.ComponentType:
2929
".. no_pii:": "This model has no PII"
30-
oel_components.ComponentVersion:
30+
oel_authoring.ComponentVersion:
3131
".. no_pii:": "This model has no PII"
32-
oel_components.ComponentVersionContent:
32+
oel_authoring.ComponentVersionContent:
3333
".. no_pii:": "This model has no PII"
34-
oel_contents.Content:
34+
oel_authoring.Content:
3535
".. no_pii:": "This model has no PII"
36-
oel_contents.MediaType:
36+
oel_authoring.MediaType:
3737
".. no_pii:": "This model has no PII"
38-
oel_publishing.Container:
38+
oel_authoring.Container:
3939
".. no_pii:": "This model has no PII"
40-
oel_publishing.ContainerVersion:
40+
oel_authoring.ContainerVersion:
4141
".. no_pii:": "This model has no PII"
42-
oel_publishing.Draft:
42+
oel_authoring.Draft:
4343
".. no_pii:": "This model has no PII"
44-
oel_publishing.EntityList:
44+
oel_authoring.EntityList:
4545
".. no_pii:": "This model has no PII"
46-
oel_publishing.EntityListRow:
46+
oel_authoring.EntityListRow:
4747
".. no_pii:": "This model has no PII"
48-
oel_publishing.LearningPackage:
48+
oel_authoring.LearningPackage:
4949
".. no_pii:": "This model has no PII"
50-
oel_publishing.PublishLog:
50+
oel_authoring.PublishLog:
5151
".. no_pii:": "This model has no PII"
52-
oel_publishing.PublishLogRecord:
52+
oel_authoring.PublishLogRecord:
5353
".. no_pii:": "This model has no PII"
54-
oel_publishing.PublishableEntity:
54+
oel_authoring.PublishableEntity:
5555
".. no_pii:": "This model has no PII"
56-
oel_publishing.PublishableEntityVersion:
56+
oel_authoring.PublishableEntityVersion:
5757
".. no_pii:": "This model has no PII"
58-
oel_publishing.Published:
58+
oel_authoring.Published:
5959
".. no_pii:": "This model has no PII"
6060
oel_tagging.ObjectTag:
6161
".. no_pii:": "This model has no PII"
@@ -65,17 +65,17 @@ oel_tagging.TagImportTask:
6565
".. no_pii:": "This model has no PII"
6666
oel_tagging.Taxonomy:
6767
".. no_pii:": "This model has no PII"
68-
oel_sections.Section:
68+
oel_authoring.Section:
6969
".. no_pii:": "This model has no PII"
70-
oel_sections.SectionVersion:
70+
oel_authoring.SectionVersion:
7171
".. no_pii:": "This model has no PII"
72-
oel_subsections.Subsection:
72+
oel_authoring.Subsection:
7373
".. no_pii:": "This model has no PII"
74-
oel_subsections.SubsectionVersion:
74+
oel_authoring.SubsectionVersion:
7575
".. no_pii:": "This model has no PII"
76-
oel_units.Unit:
76+
oel_authoring.Unit:
7777
".. no_pii:": "This model has no PII"
78-
oel_units.UnitVersion:
78+
oel_authoring.UnitVersion:
7979
".. no_pii:": "This model has no PII"
8080
social_django.Association:
8181
".. no_pii:": "This model has no PII"

openedx_learning/apps/authoring/applets/components/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ComponentVersionInline(admin.TabularInline):
2727
def format_uuid(self, cv_obj):
2828
return format_html(
2929
'<a href="{}">{}</a>',
30-
reverse("admin:oel_components_componentversion_change", args=(cv_obj.pk,)),
30+
reverse("admin:oel_authoring_componentversion_change", args=(cv_obj.pk,)),
3131
cv_obj.uuid,
3232
)
3333

0 commit comments

Comments
 (0)