Fix themes not being found in theme selector dropdown
This commit is contained in:
parent
3eb017caf8
commit
c49239b4f1
@ -14,7 +14,7 @@ module.exports = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function loadLocalThemes() {
|
function loadLocalThemes() {
|
||||||
fs.readdir(path.join(__dirname, "..", "..", "public", "themes"), (err, builtInThemes) => {
|
fs.readdir(path.join(__dirname, "..", "..", "..", "public", "themes"), (err, builtInThemes) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -46,7 +46,6 @@ function makeLocalThemeObject(css) {
|
|||||||
const themeName = css.slice(0, -4);
|
const themeName = css.slice(0, -4);
|
||||||
return {
|
return {
|
||||||
displayName: themeName.charAt(0).toUpperCase() + themeName.slice(1),
|
displayName: themeName.charAt(0).toUpperCase() + themeName.slice(1),
|
||||||
filename: path.join(__dirname, "..", "..", "public", "themes", `${themeName}.css`),
|
|
||||||
name: themeName,
|
name: themeName,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,10 @@ module.exports = function() {
|
|||||||
maxAge: 86400 * 1000,
|
maxAge: 86400 * 1000,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
// This route serves *installed themes only*. Local themes are served directly
|
||||||
|
// from the `public/themes/` folder as static assets, without entering this
|
||||||
|
// handler. Remember this is you make changes to this function, serving of
|
||||||
|
// local themes will not get those changes.
|
||||||
app.get("/themes/:theme.css", (req, res) => {
|
app.get("/themes/:theme.css", (req, res) => {
|
||||||
const themeName = req.params.theme;
|
const themeName = req.params.theme;
|
||||||
const theme = themes.getFilename(themeName);
|
const theme = themes.getFilename(themeName);
|
||||||
|
Loading…
Reference in New Issue
Block a user