Skip to content

Commit

Permalink
fix(web.exchange): fix account with aliases csv export
Browse files Browse the repository at this point in the history
ref: INC0093673

Signed-off-by: Quentin Pavy <[email protected]>
  • Loading branch information
Quentin Pavy authored and antonymarion committed Nov 26, 2024
1 parent 6124d6c commit 4dabf22
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1608,10 +1608,12 @@ export default class Exchange {
organization,
serviceName,
account.primaryEmailAddress,
'account',
0,
this.aliasMaxLimit,
).then((aliases) => {
angular.forEach(aliases.list.results, (alias) => {
account.aliases.push(alias.displayName);
).then(({ data: aliases }) => {
angular.forEach(aliases, (alias) => {
account.aliases.push(alias.alias);
});
}),
);
Expand Down

0 comments on commit 4dabf22

Please sign in to comment.