Skip to content

Commit

Permalink
change initialData of service
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioLangaritaBenitez committed Oct 11, 2024
1 parent dfec925 commit 7a68e05
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Service } from "../../../models/service";
import { Service, LOG_LEVEL } from "../../../models/service";

export const defaultService: Service = {
name: "",
Expand All @@ -15,7 +15,7 @@ export const defaultService: Service = {
replicas: [],
rescheduler_threshold: "",
token: "",
log_level: "INFO",
log_level: LOG_LEVEL.INFO,
image_rules: [],
image: "",
alpine: false,
Expand All @@ -42,4 +42,6 @@ export const defaultService: Service = {
ssl_verify: false,
},
},
interlink_node_name:"",
allowed_users:[],
};

0 comments on commit 7a68e05

Please sign in to comment.