-
Notifications
You must be signed in to change notification settings - Fork 117
RequireAdmin on userService #36
Comments
So I just learned about the userService.before({
find: [authHooks.restrictToSelf()],
get: [authHooks.restrictToSelf()],
remove: [auth.requireAdmin],
create: [
auth.requireAdmin,
authHooks.hashPassword(),
authHooks.toLowerCase('username')
],
update: [
auth.requireAdmin,
authHooks.hashPassword(),
authHooks.toLowerCase('username')
],
patch: [
auth.requireAdmin,
authHooks.hashPassword(),
authHooks.toLowerCase('username')
]
}); but I'm still having the issue described above... |
The solution to this is probably to update the hooks with a check for a |
If there's no provider, it was an internal call, so let it through. Fixes #36.
I got some time to look at this tonight and implemented a fix. Please try it out. I'm trying not to change this much since there's a big rewrite underway, but it's not really usable if you can't lock down your user service. :) |
Reopening for docs and tests. |
Thanks a lot for the quick reply and fix, @marshallswain! I saw that you only fixed the |
This is now documented at http://docs.feathersjs.com/authorization/bundled-hooks.html. I'm going to close as we have another issue as a reminder to add more tests for things like this. |
I followed the guides on http://docs.feathersjs.com/authorization/readme.html. Doing so, I created a
userService
which provides the/api/users
endpoint. I'm trying to make it a secure endpoint usingwhere
auth
is an instance of theAuth
class:When I'm trying to
POST
to the/api/#
endpoint, the server runs into a500
error and sends the following as a response to my request:If I remove the
find: [auth.requireAdmin]
onuserService
, it works fine. Does that mean that I cannot put an ACL onto theGET /api/users
endpoint? I think it's not a good idea to have this endpoint open because it would mean that anybody could look up my user list...The text was updated successfully, but these errors were encountered: