Create Proyek Kolaborasi

# feat
- Create proyek
- Edit proyek
- User lain join proyek
- Buat gruo diskusi
## No issue
This commit is contained in:
2024-04-25 12:13:08 +08:00
parent d3ea37d854
commit 2929459e95
51 changed files with 997 additions and 248 deletions

View File

@@ -18,6 +18,7 @@ export interface MODEL_COLLABORATION {
lokasi: string;
purpose: string;
benefit: string;
jumlah_partisipan: number;
ProjectCollaborationMaster_Industri: MODEL_COLLABORATION_MASTER;
projectCollaborationMaster_IndustriId: number;
Author: MODEL_USER;
@@ -28,12 +29,33 @@ export interface MODEL_COLLABORATION {
export interface MODEL_COLLABORATION_PARTISIPASI {
id: string;
deskripsi_diri: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
userId: string;
User: MODEL_USER;
projectCollaborationId: string;
projectCollaboration_RoomChatId: string;
ProjectCollaboration: MODEL_COLLABORATION;
}
export interface MODEL_COLLABORATION_ROOM_CHAT {
id: string;
name: string;
isActive: true;
Author: MODEL_USER;
userId: string;
ProjectCollaboration: MODEL_COLLABORATION;
ProjectCollaboration_AnggotaRoomChat: MODEL_COLLABORATION_ANGGOTA_ROOM_CHAT[];
}
export interface MODEL_COLLABORATION_ANGGOTA_ROOM_CHAT {
id: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
userId: string;
User: MODEL_USER;
ProjectCollaboration_RoomChat: MODEL_COLLABORATION_ROOM_CHAT;
projectCollaboration_RoomChatId: string;
}