mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
link to metrics
This commit is contained in:
@@ -5,6 +5,8 @@ v 2.0.2
|
|||||||
- users are able to delete their account again
|
- users are able to delete their account again
|
||||||
- chinese and malaysian translation files are now correctly loaded
|
- 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
|
v 2.0.1
|
||||||
- the redis pool no longer throws an exception when it is unable to aquire a new connection
|
- the redis pool no longer throws an exception when it is unable to aquire a new connection
|
||||||
v2.0.0
|
v2.0.0
|
||||||
|
|||||||
@@ -1432,6 +1432,9 @@ module.controller('ManageSettingsCtrl', ['$scope', '$location', '$state', 'Admin
|
|||||||
$scope.toUsers = function() {
|
$scope.toUsers = function() {
|
||||||
$state.transitionTo('admin.userlist');
|
$state.transitionTo('admin.userlist');
|
||||||
};
|
};
|
||||||
|
$scope.toMetrics = function() {
|
||||||
|
$state.transitionTo('admin.metrics');
|
||||||
|
};
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
module.controller('HelpController', ['$scope', 'CategoryService', 'AnalyticsService', 'ServerService',
|
module.controller('HelpController', ['$scope', 'CategoryService', 'AnalyticsService', 'ServerService',
|
||||||
|
|||||||
@@ -1,10 +1,14 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1>
|
<h1>
|
||||||
Application settings
|
Application settings -
|
||||||
<small>
|
<small>
|
||||||
<a ng-click="toUsers()" class="pointer">Manage users</a>
|
<a ng-click="toUsers()" class="pointer">Manage users</a>
|
||||||
</small>
|
</small>
|
||||||
|
-
|
||||||
|
<small>
|
||||||
|
<a ng-click="toMetrics()" class="pointer">Metrics</a>
|
||||||
|
</small>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user