sbernheim4 / Budgeteer

0 stars 0 forks source link

Stop storing Access Tokens and Item IDs on the Server #14

Closed sbernheim4 closed 5 years ago

sbernheim4 commented 6 years ago

This information should be stored in a session cookie and be sent on requests to /plaid-api/* as part of the request.

This has 2 primary advantages

  1. Stops the server from having to make a request to the DB for that specific user which removes a network round trip
  2. Stops the server from having to store business logic information which is better stored on the client

Need to Learn

sbernheim4 commented 5 years ago

Done