A defined collection of CFG.PNTS.Auth.Base, representing all Auth-Requests. This is
declared by using module.exports to export a function that returns
the definition.
These are placed in config/authpoints.cfg.js.
// ./config/authpoints.cfg.js
module.exports = () => ({
__DEFAULTS: { ... },
Auth: { ... },
Security: { ... },
});
The body of this function can be used to declare any variables
and useful functions that make your coding easier.
The configuration object of default GNParams.
A defined collection of
CFG.PNTS.Auth.Base, representing all Auth-Requests. This is declared by usingmodule.exportsto export afunctionthatreturnsthe definition.Examples:
These are placed in
config/authpoints.cfg.js.// ./config/authpoints.cfg.js module.exports = () => ({ __DEFAULTS: { ... }, Auth: { ... }, Security: { ... }, });The body of this
functioncan be used to declare any variables and usefulfunctionsthat make your coding easier.