Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
738 changes: 0 additions & 738 deletions src/components/billing/Card.vue

This file was deleted.

515 changes: 0 additions & 515 deletions src/components/billing/ModalAddCreditCard.vue

This file was deleted.

8 changes: 2 additions & 6 deletions src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,12 +432,8 @@ const routes = [
},
},
{
path: '/orgs/:orgUuid/billing/plans',
alias: [
'/orgs/:orgUuid/billing/card',
'/orgs/:orgUuid/billing/address',
'/orgs/:orgUuid/billing/success',
],
path: '/orgs/:orgUuid/billing/card',
alias: ['/orgs/:orgUuid/billing/address'],
name: 'BillingPlans',
component: BillingPlans,
meta: {
Expand Down
4 changes: 0 additions & 4 deletions src/store/billing/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ export default {
return orgs.removeCreditCard({ organizationUuid });
},

changeOrganizationPlan(store, { organizationUuid, plan }) {
return orgs.changeOrganizationPlan({ organizationUuid, plan });
},

closeOrganizationPlan(store, { organizationUuid }) {
return orgs.closeOrgPlan({ organizationUuid });
},
Expand Down
5 changes: 0 additions & 5 deletions src/views/billing/billing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -751,11 +751,6 @@ export default {
});
},

openChangePlanModal() {
this.$store.state.BillingSteps.flow = 'change-plan';
this.$router.push(`/orgs/${this.currentOrg.uuid}/billing/plans`);
},

openAddCreditCardModal() {
this.$store.state.BillingSteps.flow = 'add-credit-card';
this.$router.push(`/orgs/${this.currentOrg.uuid}/billing/card`);
Expand Down
Loading
Loading