12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
|
'use strict';
|
||
|
'require form';
|
||
|
|
||
|
return L.Class.extend({
|
||
|
title: _('Conntrack Plugin Configuration'),
|
||
|
description: _('The conntrack plugin collects statistics about the number of tracked connections.'),
|
||
|
|
||
|
configSummary: function(section) {
|
||
|
return _('Conntrack monitoring enabled');
|
||
|
}
|
||
|
});
|