We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8368640 commit 20561e2Copy full SHA for 20561e2
lib/ueberauth/strategy/github.ex
@@ -66,10 +66,10 @@ defmodule Ueberauth.Strategy.Github do
66
github: { Ueberauth.Strategy.Github, [default_scope: "user,public_repo"] }
67
]
68
69
- Default is "user,public_repo"
+ Default is empty ("") which "Grants read-only access to public information (includes public user profile info, public repository info, and gists)"
70
"""
71
use Ueberauth.Strategy, uid_field: :id,
72
- default_scope: "user,public_repo",
+ default_scope: "",
73
oauth2_module: Ueberauth.Strategy.Github.OAuth
74
75
alias Ueberauth.Auth.Info
0 commit comments