Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/import/github_oauth.rb')
-rw-r--r--app/controllers/concerns/import/github_oauth.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/concerns/import/github_oauth.rb b/app/controllers/concerns/import/github_oauth.rb
index ae5a0401155..fa6162254dc 100644
--- a/app/controllers/concerns/import/github_oauth.rb
+++ b/app/controllers/concerns/import/github_oauth.rb
@@ -56,7 +56,11 @@ module Import
session[:auth_on_failure_path] = "#{new_project_path}#import_project"
oauth_client.auth_code.authorize_url(
redirect_uri: callback_import_url,
- scope: 'repo, user, user:email',
+ # read:org only required for collaborator import, which is optional,
+ # but at the time of this OAuth request we do not know which optional
+ # configuration the user will select because the options are only shown
+ # after authenticating
+ scope: 'repo, read:org',
state: state
)
end