Personal Measure API ==================== ### Measure ☐ GET /measures Get a list of all defined measures for this user. ☐ POST /measures Create a new measure (post the definition). ☐ GET /measures/ Get the definition for a specific measure. ☐ DELETE /measures/ Delete a measure (and all values associated with it). ### Values ☐ GET / Get a list of values for a measure. ☐ POST / Add a new value for a measure. ☐ GET // Get the details for a specific value by id. ☐ PUT // Update a value by id. ☐ DELETE / Delete a value by id. ### Auth ☑ GET /auth-token Given a valid username/password combo, get an auth token. ☑ GET /user Given a valid auth token, return the user details. ☐ GET /api-tokens List api tokens. ☐ DELETE /api-tokens/ Delete a specific api token. ☐ POST /api-tokens With a valid session, create a new api token. Legend ------ ☐ TODO ☑ Done ☒ Will not do