1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-25 12:15:18 +01:00

[EC-8] Renamed user billing history component

This commit is contained in:
Shane Melton 2022-07-28 15:22:59 -07:00
parent 8765aa182f
commit 2613debbfe
5 changed files with 10 additions and 10 deletions

View File

@ -94,6 +94,7 @@ import { AddCreditComponent } from "../settings/add-credit.component";
import { AdjustPaymentComponent } from "../settings/adjust-payment.component";
import { AdjustStorageComponent } from "../settings/adjust-storage.component";
import { ApiKeyComponent } from "../settings/api-key.component";
import { BillingHistoryComponent } from "../settings/billing-history.component";
import { BillingSyncKeyComponent } from "../settings/billing-sync-key.component";
import { ChangeEmailComponent } from "../settings/change-email.component";
import { ChangeKdfComponent } from "../settings/change-kdf.component";
@ -131,7 +132,6 @@ import { TwoFactorWebAuthnComponent } from "../settings/two-factor-webauthn.comp
import { TwoFactorYubiKeyComponent } from "../settings/two-factor-yubikey.component";
import { UpdateKeyComponent } from "../settings/update-key.component";
import { UpdateLicenseComponent } from "../settings/update-license.component";
import { UserBillingHistoryComponent } from "../settings/user-billing-history.component";
import { UserSubscriptionComponent } from "../settings/user-subscription.component";
import { VaultTimeoutInputComponent } from "../settings/vault-timeout-input.component";
import { VerifyEmailComponent } from "../settings/verify-email.component";
@ -312,7 +312,7 @@ import { OrganizationBadgeModule } from "./vault/modules/organization-badge/orga
UpdateLicenseComponent,
UpdatePasswordComponent,
UpdateTempPasswordComponent,
UserBillingHistoryComponent,
BillingHistoryComponent,
UserLayoutComponent,
UserSubscriptionComponent,
UserVerificationComponent,
@ -462,7 +462,7 @@ import { OrganizationBadgeModule } from "./vault/modules/organization-badge/orga
UpdateLicenseComponent,
UpdatePasswordComponent,
UpdateTempPasswordComponent,
UserBillingHistoryComponent,
BillingHistoryComponent,
UserLayoutComponent,
UserSubscriptionComponent,
UserVerificationComponent,

View File

@ -10,8 +10,8 @@ import { OrganizationSubscriptionComponent } from "../modules/organizations/bill
import { ReportListComponent } from "../modules/organizations/reporting/report-list.component";
import { ReportingComponent } from "../modules/organizations/reporting/reporting.component";
import { OrganizationVaultModule } from "../modules/vault/modules/organization-vault/organization-vault.module";
import { BillingHistoryComponent } from "../settings/billing-history.component";
import { UserBillingHistoryComponent } from "./../settings/user-billing-history.component";
import { PermissionsGuard } from "./guards/permissions.guard";
import { OrganizationLayoutComponent } from "./layouts/organization-layout.component";
import { EventsComponent } from "./manage/events.component";
@ -168,7 +168,7 @@ const routes: Routes = [
},
{
path: "history",
component: UserBillingHistoryComponent,
component: BillingHistoryComponent,
canActivate: [PermissionsGuard],
data: { titleId: "billingHistory", permissions: [Permissions.ManageBilling] },
},

View File

@ -9,10 +9,10 @@ import { TransactionType } from "@bitwarden/common/enums/transactionType";
import { BillingHistoryResponse } from "@bitwarden/common/models/response/billingHistoryResponse";
@Component({
selector: "app-user-billing",
templateUrl: "user-billing-history.component.html",
selector: "app-billing-history",
templateUrl: "billing-history.component.html",
})
export class UserBillingHistoryComponent implements OnInit {
export class BillingHistoryComponent implements OnInit {
loading = false;
firstLoaded = false;
billing: BillingHistoryResponse;

View File

@ -1,10 +1,10 @@
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { BillingHistoryComponent } from "./billing-history.component";
import { PaymentMethodComponent } from "./payment-method.component";
import { PremiumComponent } from "./premium.component";
import { SubscriptionComponent } from "./subscription.component";
import { UserBillingHistoryComponent } from "./user-billing-history.component";
import { UserSubscriptionComponent } from "./user-subscription.component";
const routes: Routes = [
@ -31,7 +31,7 @@ const routes: Routes = [
},
{
path: "billing-history",
component: UserBillingHistoryComponent,
component: BillingHistoryComponent,
data: { titleId: "billingHistory" },
},
],