Clean up and documentation
[src/app-framework-demo.git] / afb-client / app / Frontend / app.js
index 6772243..e11c266 100644 (file)
     'ui-notification',
     
     // Application Components
-    'ConfigApp',
+    'AppConfig',
     'JQueryEmu',
-    'HomeModule',
-    'SampleModule',
+    'SampleHomeModule',
     'UploadFiles',
     'LinkButton',
     'TokenRefresh',
@@ -41,8 +40,8 @@
 
   config.$inject = ['$urlRouterProvider', '$locationProvider'];
   
-  function config($urlProvider, $locationProvider, ConfigApp) {
-    $urlProvider.otherwise('/home');
+  function config($urlProvider, $locationProvider, AppConfig) {
+    $urlProvider.otherwise('/sample-home');
 
     // https://docs.angularjs.org/error/$location/nobase
     $locationProvider.html5Mode(true).hashPrefix('!');