Attempting/struggling to get registration and sign-up working within an active admin project.
I have added the devise "registerable" to my admin_user model:
devise :database_authenticatable, :registerable, :confirmable
I can see a sign-up form, but this form does submits via GET to the dashboard path (/admin) and doesn't actually do anything.
Is there a trick to getting this hooked up?