Add rolesJson to groups table
This will contain the roles ('role definition') of a group of
users. We will internally map these to our API scopes.
This commit is contained in:
@@ -219,9 +219,9 @@ describe('Groups API', function () {
|
||||
describe('Set groups', function () {
|
||||
var group0Object, group1Object;
|
||||
before(function (done) {
|
||||
groups.create('group0', function (e, r) {
|
||||
groups.create('group0', [ ], function (e, r) {
|
||||
group0Object = r;
|
||||
groups.create('group1', function (e, r) {
|
||||
groups.create('group1', [ ], function (e, r) {
|
||||
group1Object = r;
|
||||
done();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user