Problem with function buildLink or function route for named route

Hi everyone,

I’m using coldbox 7.0.0 and I have a module name emember. In that module config folder, i add Router.cfc to add my route. I use named route like this to simplify the url :
route(pattern="login/", target="security.login", name="securityLogin");

In my ModuleConfig.cfc i set :
this.entryPoint = "incircle";

In one of my view, i use this to build the link :
#event.route( "emember:securityLogin" )#

The problem is the route or buildlink function result is always become : /ememberlogin . It’s missing the ‘/’ between emember and login. Should be /emember/login

What’s is wrong with my set so i can’t achieve url /emember/login for named route?

Sorry for my english … :pray:

Thank you.