JacobPernell / songbird

Web-based MIDI piano roll editor for quick music sketches
1 stars 1 forks source link

[51][83]: add user creation; add generic server error handling #85

Closed mi4l closed 5 years ago

mi4l commented 5 years ago

Issue

Closes #51, #83

This allows us to post to /users with a request resulting in the creation of a new user.

Example request body posted to <site>/users:

{
    "username": "brickmaster281",
    "email": "masonthebuilder@gmail.com",
    "authentication": {
        "basic": {
            "username": "brickmaster281",
            "password": "123456"
        }
    }
}

Results in the creation of a new user:

screen shot 2018-12-05 at 11 26 26 pm

Via service client:

screen shot 2018-12-05 at 11 29 02 pm

/review @JacobPernell @mskalandunas