Skip to content

Commit

Permalink
fix: add organizations and course modes for course_id of quince
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Sep 24, 2024
1 parent 020d9dd commit 7bf9213
Showing 1 changed file with 57 additions and 22 deletions.
79 changes: 57 additions & 22 deletions fixtures/initial_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,39 +53,33 @@
}
},
{
"model": "organizations.organization",
"pk": 1,
"model": "eox_tenant.tenantorganization",
"pk": 4,
"fields": {
"created": "2024-09-11T17:15:30.708Z",
"modified": "2024-09-11T17:15:30.708Z",
"name": "TenantX",
"short_name": "Tenant-x",
"description": null,
"logo": "",
"active": true
"name": "edX"
}
},
{
"model": "organizations.organization",
"pk": 2,
"pk": 3,
"fields": {
"created": "2024-09-11T17:15:35.694Z",
"modified": "2024-09-11T17:15:35.694Z",
"name": "TenantY",
"short_name": "Tenant-y",
"name": "OpenedX",
"short_name": "openedx",
"description": null,
"logo": "",
"active": true
}
},
{
"model": "organizations.organization",
"pk": 2,
"pk": 4,
"fields": {
"created": "2024-09-11T17:15:35.694Z",
"modified": "2024-09-11T17:15:35.694Z",
"name": "OpenedX",
"short_name": "openedx",
"name": "edX",
"short_name": "edx",
"description": null,
"logo": "",
"active": true
Expand All @@ -102,12 +96,13 @@
"SITE_NAME": "tenant-x.local.edly.io",
"course_org_filter": [
"TenantX",
"OpenedX"
"OpenedX",
"edX"
]
},
"studio_configs": "{}",
"theming_configs": "{}",
"meta": "{}",
"studio_configs": {},
"theming_configs": {},
"meta": {},
"organizations": [
1
]
Expand All @@ -126,9 +121,9 @@
"TenantY"
]
},
"studio_configs": "{}",
"theming_configs": "{}",
"meta": "{}",
"studio_configs": {},
"theming_configs": {},
"meta": {},
"organizations": [
2
]
Expand Down Expand Up @@ -208,5 +203,45 @@
"ios_sku": null,
"bulk_sku": null
}
},
{
"model": "course_modes.coursemode",
"pk": 3,
"fields": {
"course": "course-v1:edX+DemoX+Demo_Course",
"mode_slug": "audit",
"mode_display_name": "audit mode",
"min_price": 0,
"currency": "usd",
"_expiration_datetime": null,
"expiration_datetime_is_explicit": false,
"expiration_date": null,
"suggested_prices": "",
"description": null,
"sku": null,
"android_sku": null,
"ios_sku": null,
"bulk_sku": null
}
},
{
"model": "course_modes.coursemode",
"pk": 4,
"fields": {
"course": "course-v1:edX+DemoX+Demo_Course",
"mode_slug": "honor",
"mode_display_name": "honor mode",
"min_price": 0,
"currency": "usd",
"_expiration_datetime": null,
"expiration_datetime_is_explicit": false,
"expiration_date": null,
"suggested_prices": "",
"description": null,
"sku": null,
"android_sku": null,
"ios_sku": null,
"bulk_sku": null
}
}
]

0 comments on commit 7bf9213

Please sign in to comment.