mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
d0bb8c3333
no-issue
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
|
|
});
|
|
}
|
|
};
|