forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [AXIMST-166] Certificates screen additional data
- Loading branch information
1 parent
8ea0d75
commit 36a49ec
Showing
3 changed files
with
41 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,35 +58,38 @@ def get(self, request: Request, course_id: str): | |
```json | ||
{ | ||
"certificate_activation_handler_url": "/certificates/activation/course-v1:org+101+101/", | ||
"certificate_web_view_url": "///certificates/course/course-v1:org+101+101?preview=honor", | ||
"certificates": [ | ||
{ | ||
"course_title": "Course title", | ||
"description": "Description of the certificate", | ||
"editing": false, | ||
"id": 1622146085, | ||
"is_active": false, | ||
"name": "Name of the certificate", | ||
"signatories": [ | ||
"certificate_activation_handler_url": "/certificates/activation/course-v1:org+101+101/", | ||
"certificate_web_view_url": "///certificates/course/course-v1:org+101+101?preview=honor", | ||
"certificates": [ | ||
{ | ||
"id": 268550145, | ||
"name": "name_sign", | ||
"organization": "org", | ||
"signature_image_path": "/asset-v1:org+101+101+type@[email protected]", | ||
"title": "title_sign" | ||
} | ||
], | ||
"version": 1 | ||
} | ||
], | ||
"course_modes": [ | ||
"honor" | ||
], | ||
"has_certificate_modes": true, | ||
"is_active": false, | ||
"is_global_staff": true, | ||
"mfe_proctored_exam_settings_url": "" | ||
"course_title": "Course title", | ||
"description": "Description of the certificate", | ||
"editing": false, | ||
"id": 1622146085, | ||
"is_active": false, | ||
"name": "Name of the certificate", | ||
"signatories": [ | ||
{ | ||
"id": 268550145, | ||
"name": "name_sign", | ||
"organization": "org", | ||
"signature_image_path": "/asset-v1:org+101+101+type@[email protected]", | ||
"title": "title_sign" | ||
} | ||
], | ||
"version": 1 | ||
}, | ||
], | ||
"course_modes": [ | ||
"honor" | ||
], | ||
"has_certificate_modes": true, | ||
"is_active": false, | ||
"is_global_staff": true, | ||
"mfe_proctored_exam_settings_url": "", | ||
"course_number": "DemoX", | ||
"course_title": "Demonstration Course", | ||
"course_number_override": "Course Number Display String" | ||
} | ||
``` | ||
""" | ||
|
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