mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
|
const labs = require('../labs');
|
||
|
module.exports = {
|
||
|
get api() {
|
||
|
if (!labs.isSet('members')) {
|
||
|
return {};
|
||
|
}
|
||
|
return require('./api');
|
||
|
}
|
||
|
};
|