I have two Devise models (Doctor and Patient) in my app. And i have two different sets of controllers for each one. At the moment i just prefixing each controller like this: PatientRegistrationsController, DoctorRegistrationsController etc.
But now i'm thinking about using namespaces for better app organization and structure. For example, Patient::RegistrationsController, Doctor::SessionsController.
Help me deciding which strategy i should use with my controllers - namespaces or prefixing names. Is where any gotchas with namespaces?