Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GitHub capitalize #246

Merged
merged 1 commit into from
Sep 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Authentication module for Nuxt.js.

## Links

* [Github](https://github.com/nuxt-community/auth-module)
* [GitHub](https://github.com/nuxt-community/auth-module)
* [Release Notes](./CHANGELOG.md)
* [Migration Guide](migration.md)
* [Examples](https://github.com/nuxt-community/auth-module/tree/dev/examples)
Expand Down
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* [Providers](providers/README.md)
* [Auth0](providers/auth0.md)
* [Facebook](providers/facebook.md)
* [Github](providers/github.md)
* [GitHub](providers/github.md)
* [Google](providers/google.md)
* [Laravel Passport](providers/passport.md)
* API
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/github.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Github
# GitHub

[Source Code](https://github.com/nuxt-community/auth-module/blob/dev/lib/providers/github.js)

Expand Down
2 changes: 1 addition & 1 deletion examples/demo/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default {
picture() {
return dotProp(this.$auth.user, 'picture') || // OpenID
dotProp(this.$auth.user, 'picture.data.url') || // Facebook graph API
dotProp(this.$auth.user, 'avatar_url') // Github
dotProp(this.$auth.user, 'avatar_url') // GitHub
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/demo/pages/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
{ key: 'auth0', name: 'Auth0', color: '#ec5425' },
{ key: 'google', name: 'Google', color: '#4284f4' },
{ key: 'facebook', name: 'Facebook', color: '#3c65c4' },
{ key: 'github', name: 'Github', color: '#202326' }
{ key: 'github', name: 'GitHub', color: '#202326' }
]),
redirect() {
return (
Expand Down