From daa2c572f74ec682be9f4d1e169b9111c2234b4b Mon Sep 17 00:00:00 2001 From: Alexander Saprykin Date: Mon, 17 Dec 2018 17:42:33 +0100 Subject: [PATCH] Remove public_repo github OAuth2 scope request Galaxy now requires only read-only information to user's email, public repositories and organizations. Therefore `public_repo` scope can be not requested anymore. (cherry picked from commit 11c6869aacff13ea52262a2154b97a2f227b1e92) --- galaxy/settings/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/settings/default.py b/galaxy/settings/default.py index f48b80bbe..d6022d467 100644 --- a/galaxy/settings/default.py +++ b/galaxy/settings/default.py @@ -259,7 +259,7 @@ 'SCOPE': ['r_emailaddress'] }, 'github': { - 'SCOPE': ['user:email', 'public_repo', 'read:org'] + 'SCOPE': ['user:email', 'read:org'] }, }