From 3cd9b8c41afa000c982547067acfdfea5dc39f08 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Fri, 13 Nov 2020 12:05:14 -0500 Subject: [PATCH] Update ownership mappings. Add mapping from django apps to repos so we can look up owners by this repo in the ownership mapping. --- .../monitoring/scripts/generate_code_owner_mappings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py b/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py index cd802df905..2eaddadf41 100644 --- a/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py +++ b/lms/djangoapps/monitoring/scripts/generate_code_owner_mappings.py @@ -34,6 +34,7 @@ EDX_REPO_APPS = { 'organizations': 'https://github.com/edx/edx-organizations', 'search': 'https://github.com/edx/edx-search', 'wiki': 'https://github.com/edx/django-wiki', + 'lti_consumer': 'https://github.com/edx/xblock-lti-consumer', } # Maps edx-platform installed Django apps to the third-party repo that contains @@ -45,6 +46,7 @@ THIRD_PARTY_APPS = { 'lx_pathway_plugin': 'https://github.com/open-craft/lx-pathway-plugin', 'simple_history': 'https://github.com/treyhunner/django-simple-history', 'social_django': 'https://github.com/python-social-auth/social-app-django', + 'corsheaders': 'https://github.com/adamchainz/django-cors-headers', }