iLoveTux / data_store

a simple mongo-esque data_store.
GNU General Public License v2.0
0 stars 1 forks source link

Basic auth for the api #8

Closed iLoveTux closed 9 years ago

iLoveTux commented 9 years ago

The api is unsecured, I will use bottle's built-in support for basic auth to allow for users and permissions.

I will also take this opportunity to allow for per-user data stores. Each user will have a python "shelve" file to store their data, and when accessed the authenticated user name will be used to build the filename, so they will automatically be guaranteed to only get their data.

iLoveTux commented 9 years ago

Closing this issue as it is being rolled into issue #18.