Skip to content

Commit

Permalink
fix(incidentio): status_category
Browse files Browse the repository at this point in the history
  • Loading branch information
fouad committed Oct 5, 2023
1 parent 870b4b4 commit a3fe53b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/stable/indent-integration-incidentio/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class IncidentioDecisionIntegration

const response = await this.FetchIncidentio({
method: 'get',
url: '/v2/incidents?status_category=live&page_size=100',
url: '/v2/incidents?status_category[one_of]=live&page_size=250',
})

const { incidents = [] } = response.data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function setupMocks() {
{
method: 'get',
baseURL: 'https://api.incident.io',
url: `/v2/incidents?status_category=live&page_size=100`,
url: `/v2/incidents?status_category[one_of]=live&page_size=250`,
},
success(SNAPSHOT_V2_INCIDENTS)
)
Expand Down

0 comments on commit a3fe53b

Please sign in to comment.