feat: integrate SessionCard component and enhance EditTable modal for improved session management
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export interface IOwner {
|
||||
fullname: string;
|
||||
}
|
||||
@@ -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
@@ -3,7 +3,7 @@ import { ICompany } from "./ICompany";
|
||||
export interface IUser {
|
||||
id: string;
|
||||
email: string;
|
||||
fullname: string;
|
||||
name: string;
|
||||
companyId: string;
|
||||
company?: ICompany;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user