forked from xahgmah/edx-wp-oauth-client
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Youtrack task - https://youtrack.raccoongang.com/issue/UCDC-49. PR contains changes for integrating Single Sign On for UCDC portal and Edx platform. UCDC portal is developed using the Django framework. **Doc to installation** https://docs.google.com/document/d/1TpgeIMeFCRRofSO0H082Rm0uSNH4IDBDVFzrYBg6GMQ/edit?usp=sharing **IMPORTANT**: After a merge of the PR please create a Tag. ucdc-v.0.1.0
- Loading branch information
1 parent
54395fe
commit cfe431e
Showing
6 changed files
with
132 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
""" | ||
Constants for the operation of the module. | ||
Keep immutable values here so as not to clog the namespace of OAuth backend and middleware layer. | ||
""" | ||
|
||
|
||
OAUTH_PROCESS_URLS = ("oauth2", "auth", "login_oauth_token", "social-logout") | ||
API_URLS = ( | ||
"certificates", | ||
"api", | ||
"user_api", | ||
"notifier_api", | ||
"update_example_certificate", | ||
"update_certificate", | ||
"request_certificate", | ||
) | ||
|
||
LOCAL_URLS = ( | ||
"i18n", | ||
"search", | ||
"verify_student", | ||
"certificates", | ||
"jsi18n", | ||
"course_modes", | ||
"404", | ||
"500", | ||
"i18n.js", | ||
"wiki", | ||
"notify", | ||
"courses", | ||
"xblock", | ||
"change_setting", | ||
"account", | ||
"notification_prefs", | ||
"admin", | ||
"survey", | ||
"event", | ||
"instructor_task_status", | ||
"edinsights_service", | ||
"openassessment", | ||
"instructor_report", | ||
"logout", | ||
) |
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