Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Interceptor Bugfixes

Choose a tag to compare

@PhilWaldmann PhilWaldmann released this 14 Feb 09:33
· 816 commits to master since this release

It's now possible to do the following:

this.beforeCreate(function(t, done){
  Model.find(the_id).transaction(t).exec(function(){
    done(true);
  }
});