mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
7b4c3fc085
closes #8342 - no need to add a migration, because when we'released 1.0, OAuth was never an option - it was disabled in April, 1.0-beta was released in June - remove all remote authentication code
16 lines
518 B
JavaScript
16 lines
518 B
JavaScript
var ClientPasswordStrategy = require('passport-oauth2-client-password').Strategy,
|
|
BearerStrategy = require('passport-http-bearer').Strategy,
|
|
passport = require('passport'),
|
|
authStrategies = require('./auth-strategies');
|
|
|
|
/**
|
|
* auth types:
|
|
* - password: local login
|
|
*/
|
|
exports.init = function initPassport() {
|
|
passport.use(new ClientPasswordStrategy(authStrategies.clientPasswordStrategy));
|
|
passport.use(new BearerStrategy(authStrategies.bearerStrategy));
|
|
|
|
return passport.initialize();
|
|
};
|