mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
1ee1e68adf
no issue - moved card definitions to a new library `@tryghost/kg-default-cards` - moved `createCard` factory function to a new library `@tryghost/kg-card-factory`
18 lines
537 B
JavaScript
18 lines
537 B
JavaScript
const UrlUtils = require('@tryghost/url-utils');
|
|
const config = require('../../config');
|
|
const mobiledoc = require('../mobiledoc');
|
|
|
|
const urlUtils = new UrlUtils({
|
|
url: config.get('url'),
|
|
adminUrl: config.get('admin:url'),
|
|
apiVersions: config.get('api:versions'),
|
|
defaultApiVersion: 'v3',
|
|
slugs: config.get('slugs').protected,
|
|
redirectCacheMaxAge: config.get('caching:301:maxAge'),
|
|
baseApiPath: '/ghost/api',
|
|
get cardTransformers() {
|
|
return mobiledoc.cards;
|
|
}
|
|
});
|
|
|
|
module.exports = urlUtils;
|