Extract OAuth app name into a constant

This commit is contained in:
Jingwen Owen Ou 2014-03-21 16:16:28 -07:00
Родитель f042433cd2
Коммит f2042bc937
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -14,6 +14,7 @@ const (
GitHubHost string = "github.com"
GitHubApiHost string = "api.github.com"
UserAgent string = "Hub"
OAuthAppName string = "hub"
OAuthAppURL string = "http://hub.github.com/"
)
@ -323,7 +324,7 @@ func (client *Client) FindOrCreateToken(user, password, twoFactorCode string) (t
if token == "" {
authParam := octokit.AuthorizationParams{}
authParam.Scopes = append(authParam.Scopes, "repo")
authParam.Note = "gh"
authParam.Note = OAuthAppName
authParam.NoteURL = OAuthAppURL
auth, result := authsService.Create(authParam)