Reactivate isOwner as suggested in the comments

This commit is contained in:
Robert Schäfer 2018-11-20 21:06:56 +01:00
parent 803e613c4b
commit 859b2b8779

View File

@ -24,11 +24,10 @@ const permissions = shield({
// addFruitToBasket: isAuthenticated
CreateUser: allow
},
// TODO: re-activate this after fixing the initial seed
// User: {
// email: isOwner,
// password: isOwner
// },
User: {
email: isOwner,
password: isOwner
},
Post: isAuthenticated
})