| 123456789101112131415161718192021222324252627282930 | /* global WIKI */// ------------------------------------// Dropbox Account// ------------------------------------const DropboxStrategy = require('passport-dropbox-oauth2').Strategymodule.exports = {  key: 'dropbox',  title: 'Dropbox',  useForm: false,  props: ['clientId', 'clientSecret'],  init (passport, conf) {    passport.use('dropbox',      new DropboxStrategy({        apiVersion: '2',        clientID: conf.clientId,        clientSecret: conf.clientSecret,        callbackURL: conf.callbackURL      }, (accessToken, refreshToken, profile, cb) => {        WIKI.db.User.processProfile(profile).then((user) => {          return cb(null, user) || true        }).catch((err) => {          return cb(err, null) || true        })      })    )  }}
 |