certificate display
This commit is contained in:
21
ui/src/domain/certificate.ts
Normal file
21
ui/src/domain/certificate.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Workflow } from "./workflow";
|
||||
|
||||
export type Certificate = {
|
||||
id: string;
|
||||
san: string;
|
||||
certificate: string;
|
||||
privateKey: string;
|
||||
issuerCertificate: string;
|
||||
certUrl: string;
|
||||
certStableUrl: string;
|
||||
output: string;
|
||||
expireAt: string;
|
||||
workflow: string;
|
||||
nodeId: string;
|
||||
created: string;
|
||||
updated: string;
|
||||
|
||||
expand: {
|
||||
workflow?: Workflow;
|
||||
};
|
||||
};
|
||||
@@ -469,4 +469,3 @@ export const workflowNodeDropdownList: WorkflowwNodeDropdwonItem[] = [
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user