We should modify the user routes to handle user sign up. The user route handler for this already exists, but is empty. This should handle the incoming request, perform some validation, and then write the data to SQLite.
This should create a new user in the SQLiteDB with displayName "Dustybottoms", email "test@test.com", and a password that is the encrypted version of their provided password.
We should modify the user routes to handle user sign up. The user route handler for this already exists, but is empty. This should handle the incoming request, perform some validation, and then write the data to SQLite.
Test Case:
This should create a new user in the SQLiteDB with displayName "Dustybottoms", email "test@test.com", and a password that is the encrypted version of their provided password.