cityofaustin / resource-list

MIT License
0 stars 1 forks source link

RESTful URL that has query parameters #7

Open easherma opened 4 years ago

easherma commented 4 years ago

As a site user I want searches and filters to be reflected in the URL so that I can bookmark a URL to save a search and get the latest info at a later date.

Detailed Description

Acceptance Criteria

as a BDD scenario:

Scenario: User visits page via plain URL
Given No query parameters are in the URL
When  User visits the page 
Then  A searchable list of all data is fetched and shown (perhaps paginated eventually)
Scenario: User visits page via URL with query parameters
Given Query parameters are in the URL
  And all parameters are valid
When  User visits the page
Then  All query parameters are parsed and passed to the searchable list

Possible Implementation

Describe alternatives you've considered

Additional context