Skip to content

Commit

Permalink
Merge branch 'dev' into feat/#731
Browse files Browse the repository at this point in the history
  • Loading branch information
brgndyy authored Oct 24, 2024
2 parents 69954df + cfb222f commit 9270437
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public String buildOAuthLoginUrl(String next) {
return UriComponentsBuilder.fromHttpUrl("https://github.com/login/oauth/authorize")
.queryParam("client_id", properties.clientId())
.queryParam("redirect_uri", redirectUriWithNext)
.queryParam("scope", "user:email")
.build()
.toUriString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public OAuthUserInfo toOAuthUserInfo() {
id,
login,
avatarUrl,
email,
null,
name
);
}
Expand Down

0 comments on commit 9270437

Please sign in to comment.