Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default tree to Deployer.json #258

Merged
merged 3 commits into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ssvc-calc/ssvc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ var export_schema = {decision_points: [],decisions_table: [], lang: "en",
version: "2.0", title: "SSVC Provision table"}
/* If a new analysis is being done use this for export */
var current_score = [];
var current_tree = "CISA-Coordinator.json";
var roll_tree_map = {"CISA-Coordinator" : "CISA-Coordinator.json",
var current_tree = "Deployer.json";
var roll_tree_map = {
"Supplier": "Supplier.json",
"Deployer": "Deployer.json",
"Coordinator-Publish": "Coordinator-Publish.json",
"Coordinator-Triage": "Coordinator-Triage.json"
"Coordinator-Triage": "Coordinator-Triage.json",
"CISA-Coordinator" : "CISA-Coordinator.json"
};
var current_schema = "SSVC_Computed.schema.json";
/* A dictionary of elements that are children of a decision point*/
Expand Down