I am using the ::Provider::Config setup, with very little customization (for now; the plan is to move to a ::Database or ::DBIC provider eventually).

I have a route that looks like this:

get '/locale/:param' => require_any_role [qw( admin editor voter )] => sub {
...
};

My application is running under Plack via:


builder {
    mount '/'    => Qbank::App->to_app;
    mount '/api' => Qbank::API->to_app;
};

So when I visit /locale/foo, I expect it to redirect me to /login. What I see in the logs is:

looking for get /login in /home/aws/.plenv/versions/5.22.0/lib/perl5/site_perl/5.22.0/Dancer2/Core/App.pm l. 1180
Entering hook core.app.before_request in (eval 63) l. 1
Failed to serialize the request: hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this) at /home/aws/.plenv/versions/5.22.0/lib/perl5/site_perl/5.22.0/Dancer2/Serializer/JSON.pm line 34. in (eval 264) l. 1
Entering hook core.app.after_request in (eval 63) l. 1
"GET /api/login?return_url=%2Fapi%2Flocale%2Fexam_types HTTP/1.1" ...

I.e., it's prefixing the desired login page URL "/login" with the current URL's "/api".

If I hit "/login" directly, it's fine.

--
Jeff Boes <><
[email protected]
(269) 408-0811
_______________________________________________
dancer-users mailing list
[email protected]
http://lists.preshweb.co.uk/mailman/listinfo/dancer-users

Reply via email to