about summary refs log tree commit diff
path: root/src/App.hs
AgeCommit message (Expand)AuthorFilesLines
2020-07-31 Support PATCH /tripsWilliam Carroll1-0/+14
2020-07-31 Protect GET /trips with a session cookieWilliam Carroll1-2/+9
2020-07-30 Check for GTE instead of GTWilliam Carroll1-1/+1
2020-07-30 Verify users' email addresses when they attempt to sign-upWilliam Carroll1-6/+49
2020-07-30 Read env variables using envy libraryWilliam Carroll1-12/+12
2020-07-30 Authorize endpointsWilliam Carroll1-14/+16
2020-07-29 Fully support login, logoutWilliam Carroll1-58/+61
2020-07-29 Support reading / writing cookies in APIWilliam Carroll1-26/+36
2020-07-28 Restrict users from multiple failed login attemptsWilliam Carroll1-8/+25
2020-07-28 Check passwords in /loginWilliam Carroll1-14/+15
2020-07-28 Create Utils module for (|>) operatorWilliam Carroll1-1/+1
2020-07-28 Move SQL out of API and into separate modulesWilliam Carroll1-25/+17
2020-07-28 Support /loginWilliam Carroll1-3/+25
2020-07-28 Hash passwords when creating accountsWilliam Carroll1-8/+10
2020-07-28 Distinguish b/w Account and UserWilliam Carroll1-17/+24
2020-07-28 Partially support DELETE /tripsWilliam Carroll1-3/+14
2020-07-28 Support GET /tripsWilliam Carroll1-0/+5
2020-07-28 Prefer NoContent response to BoolWilliam Carroll1-2/+2
2020-07-28 Allow API users to create Trip entriesWilliam Carroll1-2/+10
2020-07-27 Prefer SQLite.Simple to PersistentWilliam Carroll1-28/+19
2020-07-27 Remove unnecessary language extensionsWilliam Carroll1-5/+0
2020-07-25 Remodel Account typeWilliam Carroll1-2/+2
2020-07-25 Change the name User to AccountWilliam Carroll1-4/+4
2020-07-24 Return a SessionWilliam Carroll1-11/+16
2020-07-24 Integrate Persistent with ServantWilliam Carroll1-0/+58