From 385b0960abdc8bb13172330a973dafd56560cf8d Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Tue, 7 Jul 2020 03:55:21 -0700 Subject: big cool :star: - add commenting to bot.ts - add types to most of the voice commands - add art and verify cmd for emma - add roastwilly cmd - fix rp cmd formatting --- src/models/Verify.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/models/Verify.ts (limited to 'src/models/Verify.ts') diff --git a/src/models/Verify.ts b/src/models/Verify.ts new file mode 100644 index 0000000..17da445 --- /dev/null +++ b/src/models/Verify.ts @@ -0,0 +1,11 @@ +import mongo from 'mongoose'; +const verifySchema = new mongo.Schema({ + _id: mongo.Schema.Types.ObjectId, + username: String, + userID: String, + status: Boolean, + key: String, + time: String +}); + +export = mongo.model('Verify', verifySchema) \ No newline at end of file -- cgit v1.2.3