Skip to content

Commit

Permalink
Merge pull request #16 from shwangMP/master
Browse files Browse the repository at this point in the history
Add support for Other5-10
  • Loading branch information
JagadeeshKaricherla-branch authored Dec 21, 2022
2 parents e4a4ae0 + 098bbb8 commit 5f967e5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/identity-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,24 @@ function identified(mParticleUser, identityApiRequest) {
case ('Other4'):
userId = mPUser.other4;
break;
case ('Other5'):
userId = mPUser.other5;
break;
case ('Other6'):
userId = mPUser.other6;
break;
case ('Other7'):
userId = mPUser.other7;
break;
case ('Other8'):
userId = mPUser.other8;
break;
case ('Other9'):
userId = mPUser.other9;
break;
case ('Other10'):
userId = mPUser.other10;
break;
default:
userId = mPUser.customerid;
break;
Expand Down

0 comments on commit 5f967e5

Please sign in to comment.