mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
3200ede8b1
closes #10416 - Updated to use default theme engine values when no active theme is found
19 lines
749 B
JavaScript
19 lines
749 B
JavaScript
const ghostVersion = require('../../../lib/ghost-version');
|
|
const themeService = require('../../../services/themes');
|
|
|
|
// ### GhostLocals Middleware
|
|
// Expose the standard locals that every request will need to have available
|
|
module.exports = function ghostLocals(req, res, next) {
|
|
// Make sure we have a locals value.
|
|
res.locals = res.locals || {};
|
|
// The current Ghost version
|
|
res.locals.version = ghostVersion.full;
|
|
// The current Ghost version, but only major.minor
|
|
res.locals.safeVersion = ghostVersion.safe;
|
|
// relative path from the URL
|
|
res.locals.relativeUrl = req.path;
|
|
// make ghost api version available for the theme + routing
|
|
res.locals.apiVersion = themeService.getApiVersion();
|
|
|
|
next();
|
|
};
|