Closed apex-omontgomery closed 5 years ago
hey @wimo7083 can I try this?
Hi, I currently have something in progress: https://github.com/OperationCode/operationcode_backend/pull/473
I currently have the check for if the email is taken working, and tests passing.
If you want to fix my attempts at /api/v1/users/me
and get the tests working you can give it a shot.
No longer needed.
Feature
Why is this feature being added?
The frontend redesign requires a slightly changed api for user connections.
What should your feature do?
Separate the various sidekiq jobs into individual invocations that don't cause the other to fail
Add some logging for the steps
Create endpoint to verify that email is unique
HTTP: HEAD
Params: None
route:
/api/v1/users/email/{email}
returns: 200 on success; 404 on error
unit test for route
Create get user details endpoint - GET verified route only
HTTP: GET
Params: {email, auth token}
route:
/api/v1/users/me
returns: 200 on success; 404 on error. Contains items below:
Unit test for route
Allow more params in PATCH
Update apiary to include above changes