Merge pull request #3221 from hardillb/disable-tours

Add environment variable to enable/disable tours
This commit is contained in:
Nick O'Leary
2021-10-26 09:47:17 +01:00
committed by GitHub
2 changed files with 10 additions and 0 deletions

View File

@@ -228,6 +228,11 @@ module.exports = {
if (theme.theme) {
themeSettings.theme = theme.theme;
}
if (theme.hasOwnProperty("tours")) {
themeSettings.tours = theme.tours;
}
return themeApp;
},
context: async function() {