koa-ssacl
v0.0.1
Published
Easily set the ssacl actor from koa
Downloads
8
Readme
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
}));