Skip to content

Commit 5f967e5

Browse files
Merge pull request #16 from shwangMP/master
Add support for Other5-10
2 parents e4a4ae0 + 098bbb8 commit 5f967e5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/identity-handler.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,24 @@ function identified(mParticleUser, identityApiRequest) {
2929
case ('Other4'):
3030
userId = mPUser.other4;
3131
break;
32+
case ('Other5'):
33+
userId = mPUser.other5;
34+
break;
35+
case ('Other6'):
36+
userId = mPUser.other6;
37+
break;
38+
case ('Other7'):
39+
userId = mPUser.other7;
40+
break;
41+
case ('Other8'):
42+
userId = mPUser.other8;
43+
break;
44+
case ('Other9'):
45+
userId = mPUser.other9;
46+
break;
47+
case ('Other10'):
48+
userId = mPUser.other10;
49+
break;
3250
default:
3351
userId = mPUser.customerid;
3452
break;

0 commit comments

Comments
 (0)