We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88db027 commit 3a54849Copy full SHA for 3a54849
checkmarx-ast-cli.version
@@ -1 +1 @@
1
-2.3.38-NewCodeBashingLink
+2.3.38-NewCodeBashingLink-1
src/main/codebashing/CxCodeBashing.ts
@@ -1,11 +1,11 @@
export default class CxCodeBashing {
2
- path: string;
+ lessonUrl: string;
3
4
static parseCodeBashing(resultObject: any[]): CxCodeBashing[] {
5
let codeBashingLink: CxCodeBashing[] = [];
6
codeBashingLink = resultObject.map((member: any) => {
7
const codeBashing = new CxCodeBashing();
8
- codeBashing.path = member.path;
+ codeBashing.lessonUrl = member.lessonUrl;
9
return codeBashing;
10
});
11
return codeBashingLink;
0 commit comments