We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb168ea commit 560134aCopy full SHA for 560134a
1 file changed
docs/security.md
@@ -100,11 +100,11 @@ adminAuth: {
100
options: {
101
consumerKey: TWITTER_APP_CONSUMER_KEY,
102
consumerSecret: TWITTER_APP_CONSUMER_SECRET,
103
- callbackURL: "http://example.com/auth/strategy/callback"
+ callbackURL: "http://example.com/auth/strategy/callback",
104
+ verify: function(token, tokenSecret, profile, done) {
105
+ done(null, profile);
106
+ }
107
},
- verify: function(token, tokenSecret, profile, done) {
- done(null, profile);
- }
108
109
users: [
110
{ username: "knolleary",permissions: ["*"]}
0 commit comments