add email field

This commit is contained in:
Michael Fatemi 2021-04-10 13:35:00 -04:00
parent 33757c6bb9
commit 7184974ab6
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
export const users: Record<string, Carpool.User> = { export const users: Record<string, Carpool.User> = {
myfatemi04: { myfatemi04: {
id: '3baeaed6-05cb-4c03-9b43-1d74beafdbb7', id: '3baeaed6-05cb-4c03-9b43-1d74beafdbb7',
email: '2022mfatemi@tjhsst.edu',
username: 'myfatemi04', username: 'myfatemi04',
first_name: 'Michael', first_name: 'Michael',
last_name: 'Fatemi', last_name: 'Fatemi',

View File

@ -6,6 +6,7 @@ namespace Carpool {
export interface User { export interface User {
id: string; id: string;
email: string;
username: string; username: string;
first_name: string; first_name: string;
last_name: string; last_name: string;