We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 629bb3b commit 612b9f5Copy full SHA for 612b9f5
1 file changed
src/types.rs
@@ -275,6 +275,7 @@ pub enum ChatCommand {
275
GetChatsHistory,
276
GetRegisteredClients,
277
SendMessage(Message),
278
+ RegisterToServer(NodeId),
279
}
280
281
#[derive(Debug, Clone)]
@@ -333,6 +334,8 @@ pub enum WebCommand {
333
334
AddMediaFileFromPath(String),
335
RemoveTextFile(Uuid),
336
RemoveMediaFile(Uuid),
337
+ QueryTextFilesList,
338
+ GetTextFilesList,
339
340
341
@@ -398,6 +401,10 @@ pub enum WebEvent {
398
401
notification_from: NodeId,
399
402
from: NodeId,
400
403
}, // requester_id, server_id
404
+ FilesLists {
405
+ notification_from: NodeId,
406
+ files_map: HashMap<NodeId, Vec<String>>,
407
+ }, // browser_id, files_lists
408
BadUuid {
409
410
0 commit comments