Skip to content

Commit

Permalink
[FIX] App installation from marketplace not correctly displaying the …
Browse files Browse the repository at this point in the history
…permissions (#21470)

Co-authored-by: Douglas Gubert <d-gubert@users.noreply.github.com>
Co-authored-by: Diego Sampaio <chinello@gmail.com>
Co-authored-by: thassiov <tvmcarvalho@gmail.com>
  • Loading branch information
4 people committed Apr 8, 2021
1 parent 8a4ae38 commit 1dc4ee8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions app/apps/client/orchestrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,11 @@ class AppClientOrchestrator {

getAppsFromMarketplace = async () => {
const appsOverviews = await APIClient.get('apps', { marketplace: 'true' });
return appsOverviews.map(({ latest, price, pricingPlans, purchaseType, permissions }) => ({
return appsOverviews.map(({ latest, price, pricingPlans, purchaseType }) => ({
...latest,
price,
pricingPlans,
purchaseType,
permissions,
}));
}

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"@nivo/heatmap": "^0.61.0",
"@nivo/line": "^0.61.1",
"@nivo/pie": "^0.61.1",
"@rocket.chat/apps-engine": "1.24.0",
"@rocket.chat/apps-engine": "1.24.1",
"@rocket.chat/css-in-js": "^0.23.0",
"@rocket.chat/emitter": "^0.23.0",
"@rocket.chat/fuselage": "^0.23.0",
Expand Down

0 comments on commit 1dc4ee8

Please sign in to comment.