12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
'use strict';
|
|
'require baseclass';
|
|
'require form';
|
|
|
|
return baseclass.extend({
|
|
title: _('Load Plugin Configuration'),
|
|
description: _('The load plugin collects statistics about the general system load.'),
|
|
|
|
configSummary: function(section) {
|
|
return _('Load monitoring enabled');
|
|
}
|
|
});
|