publication-igid
Version:
Authorization gateway relying on an auth service for providing user editing interfaces
22 lines (16 loc) • 553 B
JavaScript
//
const { GeneralValidator } = require('copious-transitions')
class DashboardValidator extends GeneralValidator {
constructor() {
super()
this.self = this
}
//
prepare_tests() { // application specific not in the conf ... may be in the db .. add to the field_set object of the GeneralValidator
// ADD IN A CAPTCHA VALIDATION...
//
// load application fields
// this.application_tests = {} // each applicaton has to set up its own
}
}
module.exports = new DashboardValidator()