Skip to content

Commit

Permalink
[5.2] MACT-96: Fix issue where account is not showing as Reseller whe…
Browse files Browse the repository at this point in the history
…n promoted (#188)
  • Loading branch information
pcandia committed Mar 28, 2023
1 parent 40ecfb7 commit b908381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ define(function(require) {
], callback);
}, accountId),
mergeResults = function(data) {
return _.chain(data.metadata).pick(['billing_mode', 'enabled', 'superduper_admin', 'wnm_allow_additions']).merge(data.data).value();
return _.chain(data.metadata).pick(['billing_mode', 'enabled', 'superduper_admin', 'wnm_allow_additions', 'created', 'is_reseller']).merge(data.data).value();
},
fetchData = function(callback) {
monster.parallel({
Expand Down

0 comments on commit b908381

Please sign in to comment.