Skip to content

Commit

Permalink
Merge pull request #2034 from akto-api-security/hotfix/fix_cicd_token…
Browse files Browse the repository at this point in the history
…_APIs

add missing API for CICD token
  • Loading branch information
Ark2307 authored Jan 30, 2025
2 parents 635b25b + 9788f0c commit 94b59a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/dao/src/main/java/com/akto/dto/ApiToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public enum Utility{
SLACK(Collections.emptyList()),
CICD(Arrays.asList("/api/startTest", "/api/retrieveAllCollectionTests", "/api/fetchTestingRunResultSummaries",
"/api/fetchTestingRunResults","/api/fetchWorkflowTestingRun","/api/fetchWorkflowTestingSchedule",
"/api/stopAllTests","/api/fetchTestRunResultDetails","/api/fetchIssueFromTestRunResultDetails"));
"/api/stopAllTests","/api/fetchTestRunResultDetails","/api/fetchIssueFromTestRunResultDetails",
"/api/fetchTestingRunResultSummary"));
private final List<String> accessList;

Utility(List<String> accessList) {
Expand Down

0 comments on commit 94b59a7

Please sign in to comment.