link to metrics

This commit is contained in:
Athou
2014-08-14 16:29:50 +02:00
parent dc1f88c44c
commit 1456cc40e1
3 changed files with 11 additions and 2 deletions

View File

@@ -4,7 +4,9 @@ v 2.0.2
- fields autocomplete is disabled on the profile page
- users are able to delete their account again
- chinese and malaysian translation files are now correctly loaded
- software version in user-agent when fetching feeds is no longer hardcoded
- software version in user-agent when fetching feeds is no longer hardcoded
- admin settings page is now read only, settings are configured in config.yml
- added link to metrics on the admin settings page
v 2.0.1
- the redis pool no longer throws an exception when it is unable to aquire a new connection
v2.0.0

View File

@@ -1432,6 +1432,9 @@ module.controller('ManageSettingsCtrl', ['$scope', '$location', '$state', 'Admin
$scope.toUsers = function() {
$state.transitionTo('admin.userlist');
};
$scope.toMetrics = function() {
$state.transitionTo('admin.metrics');
};
}]);
module.controller('HelpController', ['$scope', 'CategoryService', 'AnalyticsService', 'ServerService',

View File

@@ -1,10 +1,14 @@
<div class="row">
<div class="page-header">
<h1>
Application settings
Application settings -
<small>
<a ng-click="toUsers()" class="pointer">Manage users</a>
</small>
-
<small>
<a ng-click="toMetrics()" class="pointer">Metrics</a>
</small>
</h1>
</div>