mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
19 lines
408 B
Protocol Buffer
19 lines
408 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum FolderNotification {
|
|
Unknown = 0;
|
|
UserCreateWorkspace = 10;
|
|
UserDeleteWorkspace = 11;
|
|
WorkspaceUpdated = 12;
|
|
WorkspaceListUpdated = 13;
|
|
WorkspaceAppsChanged = 14;
|
|
WorkspaceSetting = 15;
|
|
AppUpdated = 21;
|
|
AppViewsChanged = 24;
|
|
ViewUpdated = 31;
|
|
ViewDeleted = 32;
|
|
ViewRestored = 33;
|
|
UserUnauthorized = 100;
|
|
TrashUpdated = 1000;
|
|
}
|