mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
34d2cc1b0b
refs: bf0823c9a2
- continuing the work of splitting up the theme service into logical components
- this is where it starts to get fiddly as the getActive function in themeService index is required across the frontend/backend mostly due to its use in the getApiVersion method
- for now left one usage of the getActive method in place in ghost-locals middleware ready for the next phase of the refactor, which will move some of the themeService index into a shared location
4 lines
131 B
JavaScript
4 lines
131 B
JavaScript
module.exports = {
|
|
loadCoreHelpers: require('./handlebars/helpers').loadCoreHelpers,
|
|
getActive: require('./active').get
|
|
};
|