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