Adonisjs Hook avant de sauver

static boot() {
  super.boot();
  this.addHook('beforeSave', async userInstance => {
    ....
  })
}
GutoTrosla