在哪里可以为ACL添加用户角色?

时间:2016-10-11 13:35:50

标签: node.js express

我试图在我的应用程序中实现ACL,并且对文档感到困惑。我的server.js文件中有以下几行

 var acl           = require('acl');

 acl = new acl(new acl.mongodbBackend(mongoose.connection.db));
 acl.allow('user', ['/units'], ['create']);

我有一个user模型,我想链接到user ACL角色。我在哪里/怎么做?

0 个答案:

没有答案