mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
f68cf109dd
refs https://github.com/TryGhost/Team/issues/513 - Bumping as this is now a default API
23 lines
815 B
JavaScript
23 lines
815 B
JavaScript
const UrlUtils = require('@tryghost/url-utils');
|
|
const config = require('./config');
|
|
|
|
const DEFAULT_GHOST_API_VERSION = 'v4';
|
|
|
|
const urlUtils = new UrlUtils({
|
|
url: config.get('url'),
|
|
adminUrl: config.get('admin:url'),
|
|
apiVersions: config.get('api:versions'),
|
|
defaultApiVersion: DEFAULT_GHOST_API_VERSION,
|
|
slugs: config.get('slugs').protected,
|
|
redirectCacheMaxAge: config.get('caching:301:maxAge'),
|
|
baseApiPath: '/ghost/api',
|
|
get cardTransformers() {
|
|
// do not require mobiledoc until it's requested to avoid circular dependencies
|
|
// shared/url-utils > server/lib/mobiledoc > server/lib/image/image-size > server/adapters/storage/utils
|
|
const mobiledoc = require('../server/lib/mobiledoc');
|
|
return mobiledoc.cards;
|
|
}
|
|
});
|
|
|
|
module.exports = urlUtils;
|