Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 1.49 KB

sprint.org

File metadata and controls

55 lines (44 loc) · 1.49 KB

Tickets

[#C] EX-1234 Fix typo in logout message

The logout screen says “locked out” instead of “logged out”.

[#A] EX-1255 Add index on upc column to products table

Querying products by UPC is really slow. Let’s add an index on that column.

[#A] EX-1212 Refactor authentication logic for readability

Authentication code was done in a hurry. Let’s take some time to clean this up.

[#B] EX-1132 CSV download of queried products

On the product query result view, allow for downloading the unpaginated list of results as a CSV file. See EX-1133 for the Backend part of this.

[#B] EX-1133 Add support for CSV format in product list API endpoint

Use the Content-Disposition: attachment; filename="..." HTTP header to suggest a file name. The file name should be the current date and time in UTC in an ISO8601-compatible format. See EX-1132 for how this is going to be called from the Frontend.