blob: ffe679194aa96e7f1e8d3979a3754d9ae96b049c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'use strict';
'require baseclass';
'require form';
return baseclass.extend({
title: _('Entropy Plugin Configuration'),
description: _('The entropy plugin collects statistics about the available entropy.'),
configSummary: function(section) {
return _('Entropy monitoring enabled');
}
});
|