I'm working on an extension for Magento 2 and can't seem to find any information on how to route a url with an underscore to my controller.
The url I'm trying to go to:
foobar/module/abandoned_carts
Class namespace and name:
namespace Foobar\Service\Controller\Module;
class AbandonedCarts extends \Magento\Framework\App\Action\Action {
I get a 404 when going to the page. I've tried a couple variations on the class name, but can't get it to work. Any suggestions?