We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96d5da commit 1c96157Copy full SHA for 1c96157
packages/manager/apps/public-cloud/src/index.js
@@ -27,6 +27,7 @@ import './index.scss';
27
28
import controller from './index.controller';
29
import service from './index.service';
30
+import routing from './index.routes';
31
32
angular
33
.module('ovhStack', [
@@ -38,4 +39,5 @@ angular
38
39
])
40
.controller('PublicCloudController', controller)
41
.service('publicCloud', service)
42
+ .config(routing)
43
.run(/* @ngTranslationsInject:json ./translations */);
packages/manager/apps/public-cloud/src/index.routes.js
@@ -1,3 +1,3 @@
1
export default /* @ngInject */ ($urlRouterProvider) => {
2
- $urlRouterProvider.otherwise('/#!/pci/projects');
+ $urlRouterProvider.otherwise('/pci/projects');
3
};
0 commit comments