Skip to content

Commit

Permalink
enhance/app subscription management filter function (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeroch authored Oct 20, 2023
1 parent 3f9571f commit 193042b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ npm/npmjs/-/express/4.18.2, MIT, approved, clearlydefined
npm/npmjs/-/fill-range/7.0.1, MIT, approved, clearlydefined
npm/npmjs/-/finalhandler/1.2.0, MIT, approved, clearlydefined
npm/npmjs/-/find-replace/3.0.0, MIT, approved, clearlydefined
npm/npmjs/-/follow-redirects/1.15.3, MIT, approved, #10782
npm/npmjs/-/follow-redirects/1.15.2, MIT, approved, #10782
npm/npmjs/-/forwarded/0.2.0, MIT, approved, clearlydefined
npm/npmjs/-/fresh/0.5.2, MIT, approved, clearlydefined
npm/npmjs/-/function-bind/1.1.1, MIT, approved, #11063
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,25 +78,23 @@ To enable the new app filters, fetch the possible filter values via the endpoint
<br>

```diff
GET: /api/apps/provided
GET: /api/apps/provided?statusId=Active

[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"leadPictureId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"provider": "string",
"status": "CREATED",
"status": "ACTIVE",
"lastChanged": "2023-06-05T09:09:43.848Z"
}
]
```

<br>

Each app responded in the GET call is used to create a filter button on the ( {hostname}/appsubscription ) board.


Since we only call the active apps, each app responded in the GET call is used to create a filter button on the ( {hostname}/appsubscription ) board.

<br>

Expand Down

0 comments on commit 193042b

Please sign in to comment.