0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/adapters/sso/Default.js

20 lines
329 B
JavaScript
Raw Normal View History

const Base = require('./Base');
module.exports = class DefaultSSOAdapter extends Base {
constructor() {
super();
}
async getRequestCredentials() {
return null;
}
async getIdentityFromCredentials() {
return null;
}
async getUserForIdentity() {
return null;
}
};