I can't come up with a nice name for my admin related controllers.
I have a UserController that is used for the site (non-admin related actions). Now I created an ADMIN section that has the following url format:
www.example.com/admin/{controller}/{action}/{id}
My controller folder is layed out like:
/controllers/ /controllers/admin/admincontroller /controllers/usercontroller
I need to make a controller for editing/deleting/listing users to perform admin related actions on them.
I will place this controller in my /controllers/admin/ folder just to keep them seperate.
What should I name this controller?
I don't want to do AdminUserController
As it just looks silly, any help!?