From 730326026a427d8f22c19c1805f24a717747cfaf Mon Sep 17 00:00:00 2001 From: alguilhot Date: Thu, 20 Oct 2022 10:54:36 +0200 Subject: [PATCH] ADD: ajout d'un tableau d'user en attende de la BD --- bob_party/src/constUser.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bob_party/src/constUser.ts diff --git a/bob_party/src/constUser.ts b/bob_party/src/constUser.ts new file mode 100644 index 0000000..c4914ee --- /dev/null +++ b/bob_party/src/constUser.ts @@ -0,0 +1,14 @@ +import { Message } from "./core/message" +import { Conversation } from "./core/conversation" +import tabSkinApp from './constSkin' +import { User } from "./core/user"; + + +let UserActu:User=new User("14", "leBg", "MdpDeOuf", "ouioui", "grand", new Date(2022,12,12), 12222, 123324, 12, tabSkinApp[0], tabSkinApp, undefined); +let UserTest:User=new User("48", "WeshWesh", "MdpDeOuf", "ouioui", "grand", new Date(2022,12,12), 12222, 123324, 12, tabSkinApp[2], tabSkinApp, undefined); +let Alban:User=new User("17", "Alban", "oui", "ouioui", "homme", new Date(2022,12,12), 12222, 123324, 12, tabSkinApp[1], tabSkinApp, undefined); +let Fefe63:User=new User("17", "Fefe63", "jesuishm", "ouioui", "homme", new Date(2022,12,12), 12222, 123324, 12, tabSkinApp[6], tabSkinApp, undefined); + +let tabUS:User[]=[UserActu, UserTest, Alban, Fefe63]; + +export default tabUS; \ No newline at end of file