🧹 Propose to remove channels, notifications, knowledge-graph and phpnode (#55)

* Propose to remove channels and notifications

* Propose to remove knowledge graph too

* Put back tags test

* FIxing tests

* FIx query builder test
This commit is contained in:
Romaric Mourgues
2023-05-16 14:36:39 +02:00
committed by GitHub
parent 65dc733855
commit a378cd13e1
102 changed files with 327 additions and 9224 deletions
+2 -14
View File
@@ -3,13 +3,6 @@
*/
import { WorkspacePrimaryKey } from "../services/workspaces/entities/workspace";
import {
Channel as ChannelEntity,
ChannelMember,
ChannelPendingEmails,
ChannelTab,
} from "../services/channels/entities";
import { ChannelParameters } from "../services/channels/web/types";
export type uuid = string;
@@ -102,14 +95,9 @@ export interface ResourceWebsocket {
export interface ResourceEventsPayload {
user: User;
channel?: ChannelEntity;
channelParameters?: ChannelParameters;
guest?: ChannelPendingEmails;
member?: ChannelMember;
actor?: User;
resourcesBefore?: (User | ChannelEntity | ChannelTab | ChannelMember)[];
resourcesAfter?: (User | ChannelEntity | ChannelTab | ChannelMember)[];
tab?: ChannelTab;
resourcesBefore?: User[];
resourcesAfter?: User[];
company?: { id: string };
workspace?: WorkspacePrimaryKey;
}