0.0.1 • Published 9 years ago

koa-ssacl v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

koa-ssacl

Easily set the ssacl actor from koa

Automatically manages the CLS namespace for ssacl/sequelize allowing you to simply do:

koa.use(function *(next) {
  this.actor = this.request.user.id;
});

koa.use(require('koa-ssacl')());

Note if already using sequelize with CLS you need to pass the namespace to koa-ssacl so it won't generate it's own:

koa.use(require('koa-ssacl')({
  cls: namespace
}));