<< 2021-04-24 | [[2021-04-26]] >>
Sunday, April 2021⚑
Quote of the Day #quotes⚑
Named must your fear be before banish it you can. — Yoda
[[Saved Quotes]]
✔️ Todo:⚑
[[Powwater API]] :⚑
Tags: #pow #api
Tasks:
- [ ] Review all code in
plumber.R
and refactor accordingly - think MVP, speed, no unnecessary enhancements just because they seem cool and worth learning. - [ ] Replace all [[R-Packages: DBI| DBI]]
DBI::dbConnect
connectionconn
objects with [[R-Packages: pool| Pool]] (i.e.pool::poolCreate
,pool::poolCheckout
, etc.) - [ ] Review Transactions for Database ensuring are working properly though unit tests.
- [ ] Implement full test suite against API endpoints and authentication filters.
- [ ] Create a
/customers/<customer_uid>/locations
endpoint toGET
(retrieve),POST
(add new), andPUT
(update existing) REST Methods. - [ ] Limit all payloads sent between requests and responses to the minimum amount of data necessary and collaborate with Patrick on how to optimize these responses with additional restructuring