glpi-project / telemetry

Telemetry & references for your projects
https://glpi-project.github.io/telemetry/
MIT License
6 stars 2 forks source link

Use a separate route for filtering #38

Closed trasher closed 6 years ago

trasher commented 6 years ago

Currently, filtering references use the same URL as references list, a GET parameter is added. Clicked again, the order is inverted.

Problem is when you reload the page; the order is inverted. Order parameters seems to be stored (in session I guess?) because it persists petween two diffrent pages without being repeated. So I guess we can use a specific route for filtering which will redirect to the list (and then remove the GET parameter showing the list).

trasher commented 6 years ago

Done