@@ -856,6 +856,68 @@ const kingJulian: Prisma.UserCreateInput = {
856856 email : 'iliketomoveit@jungle.net'
857857} ;
858858
859+ const skipper : Prisma . UserCreateInput = {
860+ firstName : 'Skipper' ,
861+ lastName : 'Penguin' ,
862+ googleAuthId : 'skipperpenguin' ,
863+ email : 'allrightboys@penguin.net' ,
864+ userSettings : {
865+ create : {
866+ defaultTheme : Theme . DARK ,
867+ slackId : SLACK_ID ? SLACK_ID : 'Penguin Boss'
868+ }
869+ }
870+ } ;
871+
872+ const kowalski : Prisma . UserCreateInput = {
873+ firstName : 'kowalski' ,
874+ lastName : 'Penguin' ,
875+ googleAuthId : 'kowalskipenguin' ,
876+ email : 'kowalskipenguin@penguin.net'
877+ } ;
878+
879+ const privat : Prisma . UserCreateInput = {
880+ firstName : 'Private' ,
881+ lastName : 'Penguin' ,
882+ googleAuthId : 'privatepenguin' ,
883+ email : 'privatepenguin@penguin.net'
884+ } ;
885+
886+ const rico : Prisma . UserCreateInput = {
887+ firstName : 'Rico' ,
888+ lastName : 'Penguin' ,
889+ googleAuthId : 'ricopenguin' ,
890+ email : 'ricopenguin@penguin.net'
891+ } ;
892+
893+ const alex : Prisma . UserCreateInput = {
894+ firstName : 'Alex' ,
895+ lastName : 'The Lion' ,
896+ googleAuthId : 'alexlion' ,
897+ email : 'alexthe@lion.org'
898+ } ;
899+
900+ const marty : Prisma . UserCreateInput = {
901+ firstName : 'Marty' ,
902+ lastName : 'The Zebra' ,
903+ googleAuthId : 'martyzebra' ,
904+ email : 'marty@zebra.com'
905+ } ;
906+
907+ const gloria : Prisma . UserCreateInput = {
908+ firstName : 'Gloria' ,
909+ lastName : 'The Hippo' ,
910+ googleAuthId : 'gloriahippo' ,
911+ email : 'gloria@hippo.hippo'
912+ } ;
913+
914+ const melman : Prisma . UserCreateInput = {
915+ firstName : 'Melman' ,
916+ lastName : 'The Giraffe' ,
917+ googleAuthId : 'melmangiraffe' ,
918+ email : 'melman@giraffe.com'
919+ } ;
920+
859921const regina : Prisma . UserCreateInput = {
860922 firstName : 'Regina' ,
861923 lastName : 'George' ,
@@ -1004,6 +1066,71 @@ const patrick: Prisma.UserCreateInput = {
10041066 }
10051067} ;
10061068
1069+ const squidward : Prisma . UserCreateInput = {
1070+ firstName : 'Squidward' ,
1071+ lastName : 'Tenticles' ,
1072+ googleAuthId : 'squidward' ,
1073+ email : 'squidwardtenticles@yahoo.com' ,
1074+ userSettings : {
1075+ create : {
1076+ defaultTheme : Theme . DARK ,
1077+ slackId : SLACK_ID ? SLACK_ID : 'squidward'
1078+ }
1079+ }
1080+ } ;
1081+
1082+ const sandy : Prisma . UserCreateInput = {
1083+ firstName : 'Sandy' ,
1084+ lastName : 'Star' ,
1085+ googleAuthId : 'sandy' ,
1086+ email : 'sandystar@gmail.com' ,
1087+ userSettings : {
1088+ create : {
1089+ defaultTheme : Theme . LIGHT ,
1090+ slackId : SLACK_ID ? SLACK_ID : 'sandy'
1091+ }
1092+ }
1093+ } ;
1094+
1095+ const pearl : Prisma . UserCreateInput = {
1096+ firstName : 'Pearl' ,
1097+ lastName : 'Whale' ,
1098+ googleAuthId : 'pearl' ,
1099+ email : 'pearlwhale@gmail.com' ,
1100+ userSettings : {
1101+ create : {
1102+ defaultTheme : Theme . LIGHT ,
1103+ slackId : SLACK_ID ? SLACK_ID : 'pearl'
1104+ }
1105+ }
1106+ } ;
1107+
1108+ const larry : Prisma . UserCreateInput = {
1109+ firstName : 'Larry' ,
1110+ lastName : 'The Lobster' ,
1111+ googleAuthId : 'larry' ,
1112+ email : 'larryLobster@lobster.lob' ,
1113+ userSettings : {
1114+ create : {
1115+ defaultTheme : Theme . LIGHT ,
1116+ slackId : SLACK_ID ? SLACK_ID : 'pearl'
1117+ }
1118+ }
1119+ } ;
1120+
1121+ const mrsPuff : Prisma . UserCreateInput = {
1122+ firstName : 'Mrs.' ,
1123+ lastName : 'Puff' ,
1124+ googleAuthId : 'puff' ,
1125+ email : 'puff@pufferfish.com' ,
1126+ userSettings : {
1127+ create : {
1128+ defaultTheme : Theme . LIGHT ,
1129+ slackId : SLACK_ID ? SLACK_ID : 'puff'
1130+ }
1131+ }
1132+ } ;
1133+
10071134export const dbSeedAllUsers = {
10081135 thomasEmrax,
10091136 joeShmoe,
@@ -1105,6 +1232,14 @@ export const dbSeedAllUsers = {
11051232 francis,
11061233 victorPerkins,
11071234 kingJulian,
1235+ skipper,
1236+ kowalski,
1237+ privat,
1238+ rico,
1239+ alex,
1240+ marty,
1241+ gloria,
1242+ melman,
11081243 regina,
11091244 gretchen,
11101245 karen,
@@ -1120,7 +1255,12 @@ export const dbSeedAllUsers = {
11201255 carr,
11211256 trang,
11221257 spongebob,
1123- patrick
1258+ patrick,
1259+ squidward,
1260+ sandy,
1261+ pearl,
1262+ larry,
1263+ mrsPuff
11241264} ;
11251265
11261266export const createUser = async ( user : Prisma . UserCreateInput , role : RoleEnum , organizationId : string ) => {
0 commit comments