0.2.1 • Published 3 years ago

acl-mssql-dcj v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

node acl mssql backend

A mssql node_acl backend. Refer to node mssql for connection options.

Installation

npm install acl-mssql --save

Usage

var Acl = require('acl');
var backend = require('acl-mssql');

var acl = new Acl(backend({
  user: '...',
  password: '...',
  server: 'localhost',
  database: '...'
}));

acl.allow('guest', 'blogs', 'view');
acl.allow('member', 'blogs', ['edit', 'view', 'delete']);

Options

In addition to mssql connection options:

prefix - Optional table prefix name.

table - Table name. Defaults to Acl.

bucketSize - Length of the bucket column. Defaults to 100.

keySize - Length of the key column. Defaults to 100.

valueSize - Length of the value column. Defaults to 100.

0.2.1

3 years ago

0.2.0

3 years ago