logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Dancer2::Handler::AutoPage - Class for handling the AutoPage feature

Author

       Dancer Core Developers

Description

       The AutoPage feature is a Handler (turned off by default) that is responsible for serving pages that
       match an existing template. If a view exists with a name that matches the requested path, Dancer2
       processes the request using the Autopage handler.

       To turn it add to your config file:

             auto_page: 1

       This allows you to easily serve simple pages without having to write a route definition for them.

       If there's no view with the name request, the route passes, allowing other matching routes to be
       dispatched.

Methods

register
       Creates the routes.

   code
       A code reference that processes the route request.

   methods
       The methods that should be served for autopages.

       Default: head, get.

   regexp
       The regexp (path) we want to match.

       Default: /:page.

Name

       Dancer2::Handler::AutoPage - Class for handling the AutoPage feature

Version

       version 1.1.2

See Also