[coldbox 3.8.0] Module + Package SES Route not working

I have set up an entry point called “admin” in my ModuleConfig.cfc file. I am using the SES interceptor and have set up the following routes in my module:

`

// SES Routes
routes = [
{pattern="/", handler=“main”, action=“index” },
{pattern=“security/:action”, handler=“security”}, //The order of these
{pattern="/security", handler=“security”, action=“login”}, //two is very important
{pattern="/:handler/:action?"}
];

`

I am trying to access an event handler that is located in a package within the module using the following URL: http://shlocal.com/admin/ajax/systemResources/editor. This throws an error saying the event “ajax.systemResource.editor” is not a valid registered event. If I use the module name explicitly instead of the entry point of “admin”, then it resolves: http://shlocal.com/private/ajax/systemResources/editor. Any ideas on why I cannot use the module’s entry point here?

Has anyone experienced something similar? Does anyone have an suggestions for me? Thanks in advance!