User: fix `confirm` permissions
Enable authentication for all User unit-tests to check that the ACLs are correctly configured. Fix the rule for `confirm` - the correct permission is `ALLOW`, not `ACL.ALLOW`.
This commit is contained in:
parent
97a8c3acb2
commit
b57cd3e409
|
@ -75,7 +75,7 @@
|
||||||
{
|
{
|
||||||
"principalType": "ROLE",
|
"principalType": "ROLE",
|
||||||
"principalId": "$everyone",
|
"principalId": "$everyone",
|
||||||
"permission": "ACL.ALLOW",
|
"permission": "ALLOW",
|
||||||
"property": "confirm"
|
"property": "confirm"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -28,6 +28,7 @@ describe('User', function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(function (done) {
|
beforeEach(function (done) {
|
||||||
|
app.enableAuth();
|
||||||
app.use(loopback.token());
|
app.use(loopback.token());
|
||||||
app.use(loopback.rest());
|
app.use(loopback.rest());
|
||||||
app.model(User);
|
app.model(User);
|
||||||
|
|
Loading…
Reference in New Issue