adonisjs hook befor save code example
Example: adonisjs hook befor save
static boot() {
super.boot();
this.addHook('beforeSave', async userInstance => {
....
})
}
static boot() {
super.boot();
this.addHook('beforeSave', async userInstance => {
....
})
}