Skip to content

Commit

Permalink
feat(oauth-apple): support Sign in with Apple as a default-supported …
Browse files Browse the repository at this point in the history
…provider
  • Loading branch information
booleanbetrayal committed Oct 16, 2019
1 parent 4ec3bdc commit c62dce0
Show file tree
Hide file tree
Showing 10 changed files with 12,282 additions and 12 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ angular.module('myApp', ['ng-token-auth'])
authProviderPaths: {
github: '/auth/github',
facebook: '/auth/facebook',
google: '/auth/google'
google: '/auth/google',
apple: '/auth/apple'
},
tokenFormat: {
"access-token": "{{ token }}",
Expand Down Expand Up @@ -990,7 +991,8 @@ $authProvider.configure([
authProviderPaths: {
github: '/auth/github',
facebook: '/auth/facebook',
google: '/auth/google_oauth2'
google: '/auth/google_oauth2',
apple: '/auth/apple'
}
}
}, {
Expand All @@ -1008,7 +1010,8 @@ $authProvider.configure([
authProviderPaths: {
github: '/evil_user_auth/github',
facebook: '/evil_user_auth/facebook',
google: '/evil_user_auth/google_oauth2'
google: '/evil_user_auth/google_oauth2',
apple: '/evil_user_auth/apple'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"authors": [
"Lynn Dylan Hurley <lynn.dylan.hurley@gmail.com>"
],
"description": "Token based authentication system for angular js. Includes support for oauth2 authentication using Facebook, Github, and Google.",
"description": "Token based authentication system for angular js. Includes support for oauth2 authentication using Facebook, Github, Google, and Apple.",
"main": "dist/ng-token-auth.js",
"keywords": [
"authentication",
Expand Down
3 changes: 2 additions & 1 deletion dist/ng-token-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ angular.module('ng-token-auth', ['ipCookie']).provider('$auth', function() {
authProviderPaths: {
github: '/auth/github',
facebook: '/auth/facebook',
google: '/auth/google_oauth2'
google: '/auth/google_oauth2',
apple: '/auth/apple'
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-token-auth.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit c62dce0

Please sign in to comment.