Skip to content

Commit

Permalink
Fix default scope
Browse files Browse the repository at this point in the history
  • Loading branch information
Issei Horie committed Jan 3, 2019
1 parent ca27aa1 commit a82f5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/typetalk/typetalk.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func newConfig(provider *Provider, scopes []string) *oauth2.Config {
c.Scopes = append(c.Scopes, scope)
}
} else {
c.Scopes = append(c.Scopes, "users:read")
c.Scopes = append(c.Scopes, "my")
}
return c
}
Expand Down

0 comments on commit a82f5b6

Please sign in to comment.