asvae / laravel-api-tester

Test your routes without hassle
http://laravel-api-tester.asva.by/
MIT License
356 stars 52 forks source link

Filter(s) in config. #1

Closed asvae closed 8 years ago

asvae commented 8 years ago

We should remove various service routes from displayed routes. Probably also private routes.

ghost commented 8 years ago

In config file:

<?php 

return [
    // ...

    "ignore_routes" => [
        "_api-tester/*",
        "_debugbar/*",
        "foo/*/bar",
        "*/baz"
    ],
];

And then use something like preg_grep().