mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
30 lines
621 B
Protocol Buffer
30 lines
621 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum FolderEvent {
|
|
CreateWorkspace = 0;
|
|
ReadCurWorkspace = 1;
|
|
ReadWorkspaces = 2;
|
|
DeleteWorkspace = 3;
|
|
OpenWorkspace = 4;
|
|
ReadWorkspaceApps = 5;
|
|
CreateApp = 101;
|
|
DeleteApp = 102;
|
|
ReadApp = 103;
|
|
UpdateApp = 104;
|
|
CreateView = 201;
|
|
ReadView = 202;
|
|
UpdateView = 203;
|
|
DeleteView = 204;
|
|
DuplicateView = 205;
|
|
CloseView = 206;
|
|
ReadViewInfo = 207;
|
|
CopyLink = 220;
|
|
SetLatestView = 221;
|
|
MoveFolderItem = 230;
|
|
ReadTrash = 300;
|
|
PutbackTrash = 301;
|
|
DeleteTrash = 302;
|
|
RestoreAllTrash = 303;
|
|
DeleteAllTrash = 304;
|
|
}
|