I'm using ActiveAdmin (master) on Rails 4.2 with rails-api. I've done all the proper configuration so that AA works properly. I can use index pages, show, use the edit form, etc. But when it comes time to take a destructive action, for some reason AA uses POST instead of the proper http verb. The result is a 404:
No route matches [POST] "/admin/admin_users/1"
When I copy the request as a cURL via the chrome console, modify the HTTP method from POST to DELETE, everything works properly and the user is deleted. So why is ActiveAdmin using POST?