Skip to content

Commit

Permalink
[5.3] MACT-99: Fix issue where reseller_id not being sent for reselle…
Browse files Browse the repository at this point in the history
…r accounts (#192)
  • Loading branch information
pcandia committed Oct 17, 2023
1 parent d565f69 commit 17ed5ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion submodules/wizard/wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,10 @@ define(function(require) {
generateError: generateError
},
success: function(data) {
args.callback(null, data.data);
args.callback(
null,
_.chain(data.metadata).pick(['billing_mode', 'enabled', 'superduper_admin', 'wnm_allow_additions', 'created', 'is_reseller', 'reseller_id']).merge(data.data).value()
);
},
error: function(parsedError) {
args.callback(parsedError);
Expand Down

0 comments on commit 17ed5ce

Please sign in to comment.