Skip to content

Commit a0da3f2

Browse files
committed
fix(arc-saas): changes in command
changes in command GH-63
1 parent 8e498d8 commit a0da3f2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

projects/saas-ui/src/app/main/commands/register-tenant.command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class RegisterTenantCommand<T> extends PostAPICommand<TenantLead> {
1818
super(
1919
apiService,
2020
adapter,
21-
`${appConfig.baseApiUrl}${appConfig.tenantmgmtServiceUrl}/tenants`,
21+
`${appConfig.baseApiUrl}${appConfig.tenantMgmtFacadeUrl}/tenants`,
2222
);
2323
}
2424
}

projects/saas-ui/src/app/main/components/tenant-registration/tenant-registration.component.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,7 @@
8181
display: flex;
8282
align-items: center;
8383
justify-content: space-between;
84-
}
84+
}
85+
86+
87+

projects/saas-ui/src/app/main/components/tenant-registration/tenant-registration.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class TenantRegistrationComponent {
7979
country: userData.country,
8080
key: userData.key,
8181
domains: [userData.domains],
82-
// planId: userData.planId,
82+
planId: userData.planId,
8383
};
8484
this.onBoardingService.registerTenant(user).subscribe(
8585
() => {

0 commit comments

Comments
 (0)