SM-1181: Rename service accounts to machine accounts in routing (#8688)
This commit is contained in:
parent
2c8855692c
commit
a45706cde7
|
@ -19,7 +19,7 @@
|
||||||
<bit-nav-item
|
<bit-nav-item
|
||||||
icon="bwi-wrench"
|
icon="bwi-wrench"
|
||||||
[text]="'machineAccounts' | i18n"
|
[text]="'machineAccounts' | i18n"
|
||||||
route="service-accounts"
|
route="machine-accounts"
|
||||||
[relativeTo]="route.parent"
|
[relativeTo]="route.parent"
|
||||||
></bit-nav-item>
|
></bit-nav-item>
|
||||||
<bit-nav-item
|
<bit-nav-item
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<bit-tab-link [route]="['secrets']">{{ "secrets" | i18n }}</bit-tab-link>
|
<bit-tab-link [route]="['secrets']">{{ "secrets" | i18n }}</bit-tab-link>
|
||||||
<ng-container *ngIf="project.write">
|
<ng-container *ngIf="project.write">
|
||||||
<bit-tab-link [route]="['people']">{{ "people" | i18n }}</bit-tab-link>
|
<bit-tab-link [route]="['people']">{{ "people" | i18n }}</bit-tab-link>
|
||||||
<bit-tab-link [route]="['service-accounts']">{{ "machineAccounts" | i18n }}</bit-tab-link>
|
<bit-tab-link [route]="['machine-accounts']">{{ "machineAccounts" | i18n }}</bit-tab-link>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</bit-tab-nav-bar>
|
</bit-tab-nav-bar>
|
||||||
<sm-new-menu></sm-new-menu>
|
<sm-new-menu></sm-new-menu>
|
||||||
|
|
|
@ -30,7 +30,7 @@ const routes: Routes = [
|
||||||
component: ProjectPeopleComponent,
|
component: ProjectPeopleComponent,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "service-accounts",
|
path: "machine-accounts",
|
||||||
component: ProjectServiceAccountsComponent,
|
component: ProjectServiceAccountsComponent,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -21,8 +21,8 @@ export const serviceAccountAccessGuard: CanActivateFn = async (route: ActivatedR
|
||||||
return createUrlTreeFromSnapshot(route, [
|
return createUrlTreeFromSnapshot(route, [
|
||||||
"/sm",
|
"/sm",
|
||||||
route.params.organizationId,
|
route.params.organizationId,
|
||||||
"service-accounts",
|
"machine-accounts",
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
return createUrlTreeFromSnapshot(route, ["/sm", route.params.organizationId, "service-accounts"]);
|
return createUrlTreeFromSnapshot(route, ["/sm", route.params.organizationId, "machine-accounts"]);
|
||||||
};
|
};
|
||||||
|
|
|
@ -43,7 +43,7 @@ export class ServiceAccountPeopleComponent implements OnInit, OnDestroy {
|
||||||
catchError(() => {
|
catchError(() => {
|
||||||
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
||||||
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
||||||
this.router.navigate(["/sm", this.organizationId, "service-accounts"]);
|
this.router.navigate(["/sm", this.organizationId, "machine-accounts"]);
|
||||||
return EMPTY;
|
return EMPTY;
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
@ -200,7 +200,7 @@ export class ServiceAccountPeopleComponent implements OnInit, OnDestroy {
|
||||||
if (showAccessRemovalWarning) {
|
if (showAccessRemovalWarning) {
|
||||||
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
||||||
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
||||||
this.router.navigate(["sm", this.organizationId, "service-accounts"]);
|
this.router.navigate(["sm", this.organizationId, "machine-accounts"]);
|
||||||
} else if (
|
} else if (
|
||||||
this.accessPolicySelectorService.isAccessRemoval(currentAccessPolicies, selectedPolicies)
|
this.accessPolicySelectorService.isAccessRemoval(currentAccessPolicies, selectedPolicies)
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -45,7 +45,7 @@ export class ServiceAccountComponent implements OnInit, OnDestroy {
|
||||||
catchError(() => {
|
catchError(() => {
|
||||||
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
||||||
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
||||||
this.router.navigate(["/sm", this.organizationId, "service-accounts"]).then(() => {
|
this.router.navigate(["/sm", this.organizationId, "machine-accounts"]).then(() => {
|
||||||
this.platformUtilsService.showToast(
|
this.platformUtilsService.showToast(
|
||||||
"error",
|
"error",
|
||||||
null,
|
null,
|
||||||
|
|
|
@ -54,7 +54,7 @@ const routes: Routes = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "service-accounts",
|
path: "machine-accounts",
|
||||||
loadChildren: () => ServiceAccountsModule,
|
loadChildren: () => ServiceAccountsModule,
|
||||||
data: {
|
data: {
|
||||||
titleId: "machineAccounts",
|
titleId: "machineAccounts",
|
||||||
|
|
Loading…
Reference in New Issue