naturerobots / HSOS-SEP-PlantMap-2022

PlantMap Digital Logbook: A tool to support sustainable micro farming :link: https://naturerobots.github.io/HSOS-SEP-PlantMap-2022/
BSD 3-Clause "New" or "Revised" License
4 stars 5 forks source link

feat: user creation now takes first and last name #179

Closed Anafabula closed 2 years ago

Anafabula commented 2 years ago

Additionally, more info is returned when querying the user. User creation object:

{
    "username": "testuser1234",
    "password": "7Gq^7Mjwgi%#DcHj22$C"
    "first_name": "first",
    "last_name": "last"
}

User info returned when querying:

{
    "username": "testuser1234",
    "first_name": "first",
    "last_name": "last",
    "date_joined": "2022-07-12T12:49:31.010300Z",
    "last_login": "2022-07-19T11:35:55.158069Z"
}

fixes #169