0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/adapters/sso/Base.js
Fabien O'Carroll d0bb8c3333 Added base and default SSO Adapter
no-issue
2020-04-05 21:13:47 +02:00

8 lines
253 B
JavaScript

module.exports = class SSOBase {
constructor() {
Object.defineProperty(this, 'requiredFns', {
value: ['getRequestCredentials', 'getIdentityFromCredentials', 'getUserForIdentity'],
writable: false
});
}
};