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?
Just keep in mind that :
So, I think you should consider your “register” function isolated from your “ActiveAdmin”. I mean, when you are implementing the “register”, just do it with “Devise”, it doesn’t have any relationship with “ActiveAdmin”. 🙂
OK. short answer: