Skip to content

Commit

Permalink
Add new operation to feature builder
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Jun 17, 2021
1 parent 28af215 commit 20dcf84
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:observability/getReporters",
"cases:1.0.0-zeta1:observability/getUserActions",
"cases:1.0.0-zeta1:observability/findConfigurations",
"cases:1.0.0-zeta1:observability/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:observability/getAlertsAttachedToCase",
]
`);
});
Expand Down Expand Up @@ -115,6 +117,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:security/getReporters",
"cases:1.0.0-zeta1:security/getUserActions",
"cases:1.0.0-zeta1:security/findConfigurations",
"cases:1.0.0-zeta1:security/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:security/getAlertsAttachedToCase",
"cases:1.0.0-zeta1:security/createCase",
"cases:1.0.0-zeta1:security/deleteCase",
"cases:1.0.0-zeta1:security/updateCase",
Expand Down Expand Up @@ -164,6 +168,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:security/getReporters",
"cases:1.0.0-zeta1:security/getUserActions",
"cases:1.0.0-zeta1:security/findConfigurations",
"cases:1.0.0-zeta1:security/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:security/getAlertsAttachedToCase",
"cases:1.0.0-zeta1:security/createCase",
"cases:1.0.0-zeta1:security/deleteCase",
"cases:1.0.0-zeta1:security/updateCase",
Expand All @@ -179,6 +185,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:obs/getReporters",
"cases:1.0.0-zeta1:obs/getUserActions",
"cases:1.0.0-zeta1:obs/findConfigurations",
"cases:1.0.0-zeta1:obs/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:obs/getAlertsAttachedToCase",
]
`);
});
Expand Down Expand Up @@ -219,6 +227,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:security/getReporters",
"cases:1.0.0-zeta1:security/getUserActions",
"cases:1.0.0-zeta1:security/findConfigurations",
"cases:1.0.0-zeta1:security/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:security/getAlertsAttachedToCase",
"cases:1.0.0-zeta1:security/createCase",
"cases:1.0.0-zeta1:security/deleteCase",
"cases:1.0.0-zeta1:security/updateCase",
Expand All @@ -234,6 +244,8 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:other-security/getReporters",
"cases:1.0.0-zeta1:other-security/getUserActions",
"cases:1.0.0-zeta1:other-security/findConfigurations",
"cases:1.0.0-zeta1:other-security/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:other-security/getAlertsAttachedToCase",
"cases:1.0.0-zeta1:other-security/createCase",
"cases:1.0.0-zeta1:other-security/deleteCase",
"cases:1.0.0-zeta1:other-security/updateCase",
Expand All @@ -249,12 +261,16 @@ describe(`cases`, () => {
"cases:1.0.0-zeta1:obs/getReporters",
"cases:1.0.0-zeta1:obs/getUserActions",
"cases:1.0.0-zeta1:obs/findConfigurations",
"cases:1.0.0-zeta1:obs/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:obs/getAlertsAttachedToCase",
"cases:1.0.0-zeta1:other-obs/getCase",
"cases:1.0.0-zeta1:other-obs/getComment",
"cases:1.0.0-zeta1:other-obs/getTags",
"cases:1.0.0-zeta1:other-obs/getReporters",
"cases:1.0.0-zeta1:other-obs/getUserActions",
"cases:1.0.0-zeta1:other-obs/findConfigurations",
"cases:1.0.0-zeta1:other-obs/getCaseIDsByAlertID",
"cases:1.0.0-zeta1:other-obs/getAlertsAttachedToCase",
]
`);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const readOperations: string[] = [
'getReporters',
'getUserActions',
'findConfigurations',
'getCaseIDsByAlertID',
'getAlertsAttachedToCase',
];
const writeOperations: string[] = [
'createCase',
Expand Down

0 comments on commit 20dcf84

Please sign in to comment.