File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1078,6 +1078,45 @@ const sandy: Prisma.UserCreateInput = {
10781078 }
10791079} ;
10801080
1081+ const pearl : Prisma . UserCreateInput = {
1082+ firstName : 'Pearl' ,
1083+ lastName : 'Whale' ,
1084+ googleAuthId : 'pearl' ,
1085+ email : 'pearlwhale@gmail.com' ,
1086+ userSettings : {
1087+ create : {
1088+ defaultTheme : Theme . LIGHT ,
1089+ slackId : SLACK_ID ? SLACK_ID : 'pearl'
1090+ }
1091+ }
1092+ } ;
1093+
1094+ const larry : Prisma . UserCreateInput = {
1095+ firstName : 'Larry' ,
1096+ lastName : 'The Lobster' ,
1097+ googleAuthId : 'larry' ,
1098+ email : 'larryLobster@lobster.lob' ,
1099+ userSettings : {
1100+ create : {
1101+ defaultTheme : Theme . LIGHT ,
1102+ slackId : SLACK_ID ? SLACK_ID : 'pearl'
1103+ }
1104+ }
1105+ } ;
1106+
1107+ const mrsPuff : Prisma . UserCreateInput = {
1108+ firstName : 'Mrs.' ,
1109+ lastName : 'Puff' ,
1110+ googleAuthId : 'puff' ,
1111+ email : 'puff@pufferfish.com' ,
1112+ userSettings : {
1113+ create : {
1114+ defaultTheme : Theme . LIGHT ,
1115+ slackId : SLACK_ID ? SLACK_ID : 'puff'
1116+ }
1117+ }
1118+ } ;
1119+
10811120export const dbSeedAllUsers = {
10821121 thomasEmrax,
10831122 joeShmoe,
@@ -1203,7 +1242,10 @@ export const dbSeedAllUsers = {
12031242 spongebob,
12041243 patrick,
12051244 squidward,
1206- sandy
1245+ sandy,
1246+ pearl,
1247+ larry,
1248+ mrsPuff
12071249} ;
12081250
12091251export const createUser = async ( user : Prisma . UserCreateInput , role : RoleEnum , organizationId : string ) => {
You can’t perform that action at this time.
0 commit comments