diff --git a/dashboard/src/index.html b/dashboard/src/index.html index 1d1295c4c..77fff5838 100644 --- a/dashboard/src/index.html +++ b/dashboard/src/index.html @@ -180,6 +180,7 @@
  • {{ 'branding.title' | tr }}
  • {{ 'domains.title' | tr }}
  • {{ 'emails.title' | tr }}
  • +
  • {{ 'user.settings.title' | tr }}
  • {{ 'eventlog.title' | tr }}
  • {{ 'network.title' | tr }}
  • {{ 'services.title' | tr }}
  • diff --git a/dashboard/src/js/index.js b/dashboard/src/js/index.js index 03e47e1f5..5d8270370 100644 --- a/dashboard/src/js/index.js +++ b/dashboard/src/js/index.js @@ -50,6 +50,9 @@ app.config(['$routeProvider', function ($routeProvider) { }).when('/users', { controller: 'UsersController', templateUrl: 'views/users.html?<%= revision %>' + }).when('/usersettings', { + controller: 'UserSettingsController', + templateUrl: 'views/user-settings.html?<%= revision %>' }).when('/app/:appId/:view?', { controller: 'AppController', templateUrl: 'views/app.html?<%= revision %>'