separate server run bindings from deployment targets
This commit is contained in:
@@ -14,8 +14,9 @@ export type ServerRemovalAction = "delete";
|
||||
export interface ServerCreateFormState {
|
||||
id: string;
|
||||
name: string;
|
||||
pluginId: string;
|
||||
runEndpointId: string;
|
||||
pluginId: string;
|
||||
deploymentTargetId: string;
|
||||
runEndpointId: string;
|
||||
profileKey: string;
|
||||
bindings: Record<string, string>;
|
||||
createInputs: Record<string, string>;
|
||||
@@ -63,7 +64,8 @@ export interface ServerManagementSummary {
|
||||
export const emptyServerCreateForm: ServerCreateFormState = {
|
||||
id: "",
|
||||
name: "",
|
||||
pluginId: "",
|
||||
pluginId: "",
|
||||
deploymentTargetId: "",
|
||||
runEndpointId: "",
|
||||
profileKey: "",
|
||||
bindings: {},
|
||||
|
||||
Reference in New Issue
Block a user