19 lines
408 B
Protocol Buffer
Raw Normal View History

2021-07-21 15:43:05 +08:00
syntax = "proto3";
enum FolderNotification {
2021-07-21 15:43:05 +08:00
Unknown = 0;
UserCreateWorkspace = 10;
UserDeleteWorkspace = 11;
WorkspaceUpdated = 12;
2021-10-30 17:19:50 +08:00
WorkspaceListUpdated = 13;
WorkspaceAppsChanged = 14;
2022-05-05 10:45:53 +08:00
WorkspaceSetting = 15;
AppUpdated = 21;
2021-10-13 23:11:45 +08:00
AppViewsChanged = 24;
ViewUpdated = 31;
ViewDeleted = 32;
ViewRestored = 33;
UserUnauthorized = 100;
2021-10-14 14:34:22 +08:00
TrashUpdated = 1000;
2021-07-21 15:43:05 +08:00
}