mirror of
https://github.com/openwrt/luci.git
synced 2025-02-14 14:58:09 +00:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
'use strict';
|
|
'require baseclass';
|
|
'require form';
|
|
|
|
return baseclass.extend({
|
|
title: _('Conntrack Plugin Configuration'),
|
|
description: _('The conntrack plugin collects statistics about the number of tracked connections.'),
|
|
|
|
configSummary: function(section) {
|
|
return _('Conntrack monitoring enabled');
|
|
}
|
|
});
|