FAC-Sixteen / Tinkl

Project for Weeks 10-12 of Founders and Coders
https://tinkl.herokuapp.com/
1 stars 1 forks source link

As a user, I don't want to select my filters every time. #31

Closed jokosanyang closed 5 years ago

jokosanyang commented 5 years ago

Relates #6

Technical Store a cookie with the details of the filters selected when the submit button is clicked. Hash and verify with bcrypt.js? JWT needed?

Do we need this feature? How will we implement?

samhstn commented 5 years ago

I would look at using url query params for this use case.

Hash and verify with bcrypt.js

The data is not sensitive and you want to be able to retrieve it from the database, so no.

JWT needed?

Filters do not come under authentication, so probably not a good use case here.