Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 386 Bytes

File metadata and controls

16 lines (11 loc) · 386 Bytes

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;
  yield next;
});

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

Note if already using sequelize with CLS koa-ssacl will automatically use that namespace instead of generating it's own.