Skip to content

Commit

Permalink
fix(billing): fix release qa prepayed link
Browse files Browse the repository at this point in the history
ref: QAX-6402

Signed-off-by: Maxime Bajeux <[email protected]>
  • Loading branch information
Maxime Bajeux committed Dec 6, 2024
1 parent 3fcb4d9 commit 3199691
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions packages/manager/apps/billing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-billing-app' --include-dependencies -- npm run dev:watch --if-present"
},
"dependencies": {
"@ovh-ux/manager-account-migration": "^1.5.2",
"@ovh-ux/manager-advices": "^1.8.1",
"@ovh-ux/manager-at-internet-configuration": "^1.5.0",
"@ovh-ux/manager-config": "^8.0.0",
Expand Down
1 change: 0 additions & 1 deletion packages/manager/modules/billing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"@ovh-ux/ng-ovh-order-tracking": "^2.5.1",
"@ovh-ux/ng-ovh-payment-method": "^9.16.5",
"@ovh-ux/ng-ovh-utils": "^14.4.1",
"@ovh-ux/ng-q-allsettled": "^2.1.2",
"@ovh-ux/ng-translate-async-loader": "^2.1.4",
"@ovh-ux/ng-ui-router-breadcrumb": "^1.3.1",
"@ovh-ux/ng-ui-router-layout": "^4.3.1",
Expand Down
2 changes: 0 additions & 2 deletions packages/manager/modules/billing/src/billing.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import uiBootstrap from 'angular-ui-bootstrap';
import uiRouter from '@uirouter/angularjs';
import ngAtInternetUiRouterPlugin from '@ovh-ux/ng-at-internet-ui-router-plugin';
import '@ovh-ux/ng-ui-router-breadcrumb';
import ngQAllSettled from '@ovh-ux/ng-q-allsettled';

import autorenew from './autoRenew/autorenew.module';
import billingMain from './main/billing-main.module';
Expand Down Expand Up @@ -60,7 +59,6 @@ angular
refunds,
ngOvhExportCsv,
ngOvhUtils,
ngQAllSettled,
ngRoute,
ngSanitize,
ngTranslateAsyncLoader,
Expand Down
2 changes: 2 additions & 0 deletions packages/manager/modules/new-billing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"moment": "^2.24.0"
},
"peerDependencies": {
"@ovh-ux/manager-account-migration": "^1.5.2",
"@ovh-ux/manager-billing-components": "^2.0.0 || ^3.0.0",
"@ovh-ux/manager-config": "^8.0.0",
"@ovh-ux/manager-core": "^13.0.0",
Expand All @@ -37,6 +38,7 @@
"@ovh-ux/ng-ovh-payment-method": "^9.16.5",
"@ovh-ux/ng-ovh-user-pref": "2.1.1",
"@ovh-ux/ng-ovh-utils": "^14.4.1",
"@ovh-ux/ng-q-allsettled": "^2.1.2",
"@ovh-ux/ng-translate-async-loader": "^2.1.4",
"@ovh-ux/ng-ui-router-breadcrumb": "^1.3.1",
"@ovh-ux/ng-ui-router-layout": "^4.3.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/manager/modules/new-billing/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import ngOvhFeatureFlipping from '@ovh-ux/ng-ovh-feature-flipping';
import ngOvhOrderTracking from '@ovh-ux/ng-ovh-order-tracking';
import ngOvhContacts from '@ovh-ux/ng-ovh-contacts';
import ngOvhUserPref from '@ovh-ux/ng-ovh-user-pref';
import ovhManagerAccountMigration from '@ovh-ux/manager-account-migration';
import ngQAllSettled from '@ovh-ux/ng-q-allsettled';

import 'bootstrap';
import 'angular-ui-bootstrap';
Expand Down Expand Up @@ -49,6 +51,8 @@ angular
ngOvhContacts,
'ngUiRouterBreadcrumb',
ngAtInternetUiRouterPlugin,
ngQAllSettled,
ovhManagerAccountMigration,
])
.config(
/* @ngInject */ ($stateProvider) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export default /* @ngInject */ function BillingRefundsController(
};

this.prepaidAccountLink = coreURLBuilder.buildURL(
'billing',
'/#/payment/ovhaccount',
'new-billing',
'/payment/ovhaccount',
);

this.sortHistoryResult = ({ predicate, reverse }) => {
Expand Down
7 changes: 7 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6012,6 +6012,13 @@
dependencies:
lodash "^4.17.21"

"@ovh-ux/[email protected]":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@ovh-ux/ng-ovh-user-pref/-/ng-ovh-user-pref-2.1.1.tgz#cc036939600ba54da1d777b0c82928c798ee4570"
integrity sha512-LvxWv+ER5p8hKHntejrcbxPNA6s9MqcAxnnDfvxPTeo292ZVERy6rDZ1ukuV8w6BhRKGGU/IXL8jILgLS6drKg==
dependencies:
lodash "^4.17.15"

"@ovh-ux/rollup-plugin-less-inject@^1.0.5":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@ovh-ux/rollup-plugin-less-inject/-/rollup-plugin-less-inject-1.0.6.tgz#8db90747f02d2bb95e3a5563d1c5a77a25edd0ad"
Expand Down

0 comments on commit 3199691

Please sign in to comment.