mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
c101fd90d7
* Installed `@tryghost/members-{api,auth-pages}` no-issue * Used @tryghost/members-auth-pages in member service no-issue * Used @tryghost/members-api in members service no-issue * Deleted core/server/lib/members no-issue * Fixed parent app tests no-issue Requiring the members api (via the `gateway` getter) was throwing an error, so we stub out the members service getters
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
const {static} = require('express');
|
|
const path = require('path');
|
|
|
|
module.exports = static(
|
|
path.join(
|
|
require.resolve('@tryghost/members-auth-pages'),
|
|
'../dist'
|
|
)
|
|
);
|