Skip to content

Commit

Permalink
fix(connector management): update get endpoint to consider technical …
Browse files Browse the repository at this point in the history
…user status (#938)
  • Loading branch information
lavanya-bmw authored Jul 16, 2024
1 parent 9a5d80a commit b280450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
- Show appropriate error information to the user along with refetch button
- **User Management**:
- Fix disable button state when deselect all checkboxes [#923](https://github.com/eclipse-tractusx/portal-frontend/pull/923)
- **Connector Management**:
- update get endpoint for 'Connect Company Connector' to consider technical user status [#938](https://github.com/eclipse-tractusx/portal-frontend/pull/938)
- **UI Language**
- Updated translations in locale files
- **Application Requests**:
Expand Down
2 changes: 1 addition & 1 deletion src/features/admin/serviceApiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export const apiSlice = createApi({
number
>({
query: (page) =>
`/api/administration/serviceaccount/owncompany/serviceaccounts?page=${page}&size=${PAGE_SIZE}&filterForInactive=false`,
`/api/administration/serviceaccount/owncompany/serviceaccounts?page=${page}&size=${PAGE_SIZE}&filterForInactive=false&userStatus=ACTIVE`,
}),
}),
})
Expand Down

0 comments on commit b280450

Please sign in to comment.