Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 62d8a8a

Browse files
author
sachin-maheshwari
authored
Merge pull request #57 from appirio-tech/feature/jira-plat-152
plat-jira-152
2 parents 769e865 + 3bf8056 commit 62d8a8a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ workflows:
146146
context : org-global
147147
filters:
148148
branches:
149-
only: [dev, 'feature/jira-plat-130']
149+
only: [dev, 'feature/jira-plat-152']
150150
# Production build is executed on "master" branch only.
151151
- "build-prod":
152152
context : org-global

src/main/java/com/appirio/tech/core/service/identity/resource/UserResource.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -908,9 +908,9 @@ public ApiResponse resendEmail(
908908
data.put("handle", user.getHandle());
909909
data.put("code", user.getCredential().getActivationCode());
910910
data.put("domain", getDomain());
911-
data.put("subDomain", "platform");
912-
data.put("path", "/onboard");
913-
data.put("redirectUrl", "https%3A%2F%2Fplatform."+getDomain()+"%2Fonboard");
911+
data.put("subDomain", "www");
912+
data.put("path", "/home");
913+
data.put("redirectUrl", "https%3A%2F%2Fwww."+getDomain()+"%2Fhome");
914914

915915
if (user.getRegSource() != null && user.getRegSource().matches("tcBusiness")) {
916916
data.put("subDomain", "connect");
@@ -1804,8 +1804,8 @@ private void sendActivationEmailEvent(User user, String redirectUrl) {
18041804
data.put("redirectUrl", redirectUrl);
18051805

18061806
if ((redirectUrl ==null) || (redirectUrl.isEmpty())) {
1807-
data.put("subDomain", "platform");
1808-
data.put("path", "/onboard");
1807+
data.put("subDomain", "www");
1808+
data.put("path", "/home");
18091809

18101810
if (user.getRegSource() != null && user.getRegSource().matches("tcBusiness")) {
18111811
data.put("subDomain", "connect");

0 commit comments

Comments
 (0)