feat: integrate SessionCard component and enhance EditTable modal for improved session management

This commit is contained in:
2025-06-03 18:33:18 +05:00
parent e38f4a7fc7
commit a7f2b0c32d
8 changed files with 137 additions and 39 deletions
+3
View File
@@ -0,0 +1,3 @@
export interface IOwner {
fullname: string;
}
+3 -1
View File
@@ -1,4 +1,5 @@
import { IApp } from "./IApp";
import { IOwner } from "./IOwner";
import { IServer } from "./IServer";
import { IUser } from "./IUser";
@@ -11,5 +12,6 @@ export interface ISession {
status: "starting" | "started" | "restarted" | "ending" | "ended";
server: IServer;
client: IUser;
app: IApp
app: IApp;
owner: IOwner;
}
+1 -1
View File
@@ -3,7 +3,7 @@ import { ICompany } from "./ICompany";
export interface IUser {
id: string;
email: string;
fullname: string;
name: string;
companyId: string;
company?: ICompany;
}