feat: modify invite page & 404 page (#1097)

This commit is contained in:
Qi
2023-02-17 17:44:48 +08:00
committed by GitHub
parent 5e6366ba44
commit 67fe1871da
26 changed files with 926 additions and 501 deletions

View File

@@ -37,4 +37,4 @@ export const getApis = (): Apis => {
export type { AccessTokenMessage } from './auth';
export type { Member, Workspace, WorkspaceDetail } from './workspace';
export { WorkspaceType } from './workspace';
export * from './workspace';

View File

@@ -71,9 +71,11 @@ export async function getWorkspaceDetail(
}
export interface Permission {
id: number;
id: string;
type: PermissionType;
workspace_id: string;
user_id: string;
user_email: string;
accepted: boolean;
create_at: number;
}