Merge pull request #147 from octokit/token-authenticator

Use the token authenticator.
This commit is contained in:
Phil Haack
2013-11-01 09:55:39 -07:00
+1 -1
View File
@@ -10,7 +10,7 @@ namespace Octokit.Internal
{
{ AuthenticationType.Anonymous, new AnonymousAuthenticator() },
{ AuthenticationType.Basic, new BasicAuthenticator() },
{ AuthenticationType.Oauth, new AnonymousAuthenticator() }
{ AuthenticationType.Oauth, new TokenAuthenticator() }
};
public Authenticator(ICredentialStore credentialStore)