mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
9 lines
253 B
JavaScript
9 lines
253 B
JavaScript
|
module.exports = class SSOBase {
|
||
|
constructor() {
|
||
|
Object.defineProperty(this, 'requiredFns', {
|
||
|
value: ['getRequestCredentials', 'getIdentityFromCredentials', 'getUserForIdentity'],
|
||
|
writable: false
|
||
|
});
|
||
|
}
|
||
|
};
|