1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-08 03:42:34 +01:00

🐛 make Message created_at optional

This commit is contained in:
Flam3rboy 2021-05-21 17:51:27 +02:00
parent 536a4deaf2
commit af92f3a393

View File

@ -46,7 +46,7 @@ export interface Message {
})[];
mention_roles?: Role[];
mention_channels?: Channel[];
created_at: Date;
created_at?: Date;
}
export interface MessageDocument extends Document, Message {