From a459daadb672bfd47955163eb6674f9c05e2b5f9 Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Thu, 11 Jan 2018 17:49:17 -0500 Subject: [PATCH] OAuth: update text for profile, email scopes as shown to SSO users --- lms/envs/common.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index f0c29f3f84..9a280b6afe 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -524,12 +524,12 @@ OAUTH2_PROVIDER = { 'OAUTH2_VALIDATOR_CLASS': 'openedx.core.djangoapps.oauth_dispatch.dot_overrides.EdxOAuth2Validator', 'REFRESH_TOKEN_EXPIRE_SECONDS': 20160, 'SCOPES': { - 'read': 'Read scope', - 'write': 'Write scope', - 'email': 'Email scope', + 'read': 'Read access', + 'write': 'Write access', + 'email': 'Know your email address', # conform profile scope message that is presented to end-user # to lms/templates/provider/authorize.html. This may be revised later. - 'profile': 'Read your user profile', + 'profile': 'Know your name and username', }, } # This is required for the migrations in oauth_dispatch.models