Skip to content

Commit aec86ce

Browse files
committed
changing source from teams.yaml to meta.yaml
1 parent 0e1b84f commit aec86ce

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/app/component/circular-heatmap/circular-heatmap.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class CircularHeatmapComponent implements OnInit {
7171
}
7272
});
7373
// Team Data
74-
this.yaml.setURI('./assets/YAML/teams.yaml');
74+
this.yaml.setURI('./assets/YAML/meta.yaml');
7575
this.yaml.getJson().subscribe(data => {
7676
this.YamlObject = data;
7777

src/app/component/teams/teams.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Teams implements OnInit {
1414

1515
constructor(private yaml: ymlService) {}
1616
ngOnInit(): void {
17-
this.yaml.setURI('./assets/YAML/teams.yaml');
17+
this.yaml.setURI('./assets/YAML/meta.yaml');
1818
// Function sets column header
1919
this.yaml.getJson().subscribe(data => {
2020
this.YamlObject = data;

src/assets/YAML/meta.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,9 @@ strings:
3939
'Level 4: Very high adoption of security practices',
4040
'Level 5: Advanced deployment of security practices at scale',
4141
]
42+
# Default team
43+
teams: ['Default', 'B', 'C']
44+
teamGroups:
45+
GroupA: ['Default', 'B']
46+
GroupB: ['B', 'C']
47+
GroupC: ['Default', 'C']

0 commit comments

Comments
 (0)