Allow env var access to context

This commit is contained in:
Nick O'Leary
2025-01-17 16:45:44 +00:00
parent 804551000a
commit e2981f2970
3 changed files with 34 additions and 1 deletions

View File

@@ -49,6 +49,14 @@ class Group {
}
return this.parent.getSetting(key);
}
error(msg) {
this.parent.error(msg);
}
getContext(scope) {
return this.parent.getContext(scope);
}
}
module.exports = {