mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
tests scrolling to top, show/hide templates
This commit is contained in:
parent
5af5a97d8f
commit
7dd4e78bbf
11 changed files with 101 additions and 29 deletions
|
|
@ -56,7 +56,7 @@ module.exports = {
|
|||
return { message: 'Error updating conversation' };
|
||||
}
|
||||
},
|
||||
getConvos: async () => await Conversation.find({}).exec(),
|
||||
getConvos: async () => await Conversation.find({}).sort({ created: -1 }).exec(),
|
||||
deleteConvos: async (filter) => {
|
||||
|
||||
let deleteCount = await Conversation.deleteMany(filter).exec();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue