dondi/quo

Implement user profile creation and modification services

Closed this issue · 1 comments

It’s time to fully implement user profile creation and modification. First, we do services. This means implementing (per the wiki documentation) /users POST (creation with no preset ID) and /users/{username} PUT (modification, or creation with a preset ID). We should follow REST for both, of course. Passwords may require special handling.

These services have been implemented. The password field is treated as optional: if not included in the PUT request payload, then it is not changed. Otherwise, it is changed accordingly.