blob: e1cc0d7d3e2cbee7d2afc14a606e8e0977d41dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'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(section) {
return _('Load monitoring enabled');
}
});
|