- Remove redundant form flags - Fix various default values - Add some new collect options and remove options that do not exist anymore Signed-off-by: Jo-Philipp Wich <jo@mein.io>
11 lines
287 B
JavaScript
11 lines
287 B
JavaScript
'use strict';
|
|
'require form';
|
|
|
|
return L.Class.extend({
|
|
title: _('CPU Frequency Plugin Configuration'),
|
|
description: _('This plugin collects statistics about the processor frequency scaling.'),
|
|
|
|
configSummary: function(section) {
|
|
return _('CPU frequency monitoring enabled');
|
|
}
|
|
});
|