I'm building a D6 site where users cannot create their own user accounts; all user accounts are created by administrators.

There are three user roles: superadmin, admin and user. I want superadmins to be able to create admins and users, and admins to be able to create users. Users can't create other user accounts.

As far as I can see, standard Drupal permissions only allow me to say whether users can or cannot create other users: it doesn't allow me to specify what user roles a given user type can create. Does anyone know how I can add this functionality?

Comments

CobraMP’s picture

http://drupal.org/project/role_delegation

hope that is what your looking for

jim0203’s picture

Brilliant, thank you. I was going to write my own module but I guessed there must be something out there that would do what I needed.