How can I stop just anyone signing up to my application rails admin using devise?
Currently when someone goes to my domain /admin they get the opportunity to sign up.
I have all the users i need and i don’t want Joe Public to be able to gain access to the backend.
it may be as simple as to change the routes?
Remove the
:registerableflag from theUserclass. (Assuming theUserclass is you Devise class, of course.)