-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KOGITO-9166 Gateway Api for management-console-webapp (#1717)
* KOGITO-9166 Gateway Api for management-console-webapp * move getProcessInstances getChildProcessInstances to runtime-gateway-api * move OrderBy,ProcessInstanceFilter,SortBy to management-console-sharedC * refactor jobs api to gateway api model * update UT * according to comment to modify * Updated dependencies --------- Co-authored-by: Paulo Martins <[email protected]>
- Loading branch information
Showing
54 changed files
with
1,291 additions
and
517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
ui-packages/packages/management-console-webapp/server/MockData/mutationRest.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
module.exports = restData = { | ||
management: { | ||
process: [ | ||
{ | ||
processInstanceId: 'a23e6c20-02c2-4c2b-8c5c-e988a0adf863', | ||
skip: 'Internal server error', | ||
retrigger: 'success', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'a23e6c20-02c2-4c2b-8c5c-e988a0adf864', | ||
skip: 'success', | ||
retrigger: 'success', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'a23e6c20-02c2-4c2b-8c5c-e988a0adf865', | ||
skip: 'failed', | ||
retrigger: 'failed', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'e4448857-fa0c-403b-ad69-f0a353458b9d', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'Authorization failed' | ||
}, | ||
{ | ||
processInstanceId: 'a23e6c20-02c2-4c2b-8c5c-e988a0adf867', | ||
skip: 'failed', | ||
retrigger: 'failed', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'a23e6c20-02c2-4c2b-8c5c-e988a0adf868', | ||
skip: 'success', | ||
retrigger: 'success', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: '8035b580-6ae4-4aa8-9ec0-e18e19809e0b', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'success' | ||
}, | ||
{ | ||
processInstanceId: '8035b580-6ae4-4aa8-9ec0-e18e19809e0bccddee', | ||
skip: 'failed', | ||
retrigger: 'success', | ||
aborted: 'success' | ||
}, | ||
{ | ||
processInstanceId: '538f9feb-5a14-4096-b791-2055b38da7c6', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'tEE12-fo54-l665-mp112-akou112345566', | ||
skip: 'Authentication failed', | ||
retrigger: 'success', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: 'RZ11-tu77-hj321-bnfhe1-xdr2134', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: '8035b580-6ae4-4aa8-9ec0-e18e19809e0b1', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'Internal server error' | ||
}, | ||
{ | ||
processInstanceId: '8035b580-6ae4-4aa8-9ec0-e18e19809e0b2', | ||
skip: 'success', | ||
retrigger: 'Authentication failed', | ||
aborted: 'Internal server error' | ||
} | ||
] | ||
} | ||
}; |
Oops, something went wrong.