TODO: Chat logs
This commit is contained in:
parent
2332ec38f9
commit
c257ffbd2a
|
@ -126,6 +126,19 @@ export class Channel extends EventEmitter {
|
||||||
|
|
||||||
this.sendArray([outgoing]);
|
this.sendArray([outgoing]);
|
||||||
this.chatHistory.push(outgoing);
|
this.chatHistory.push(outgoing);
|
||||||
|
|
||||||
|
prisma.chatHistory.upsert({
|
||||||
|
where:{
|
||||||
|
id: this._id
|
||||||
|
},
|
||||||
|
update:{
|
||||||
|
messages: JSON.stringify(this.chatHistory)
|
||||||
|
},
|
||||||
|
create: {
|
||||||
|
id:this._id,
|
||||||
|
messages: JSON.stringify(this.chatHistory)
|
||||||
|
}
|
||||||
|
})
|
||||||
try {
|
try {
|
||||||
if (msg.message.startsWith("/")) {
|
if (msg.message.startsWith("/")) {
|
||||||
this.emit("command", msg, socket);
|
this.emit("command", msg, socket);
|
||||||
|
|
Loading…
Reference in New Issue