blob: 39a0d9e18f13b98b968d68ee01f10790c1cef8d2 (
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(section) {
return _('Entropy monitoring enabled');
}
});
|