mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
11 lines
191 B
Ucode
11 lines
191 B
Ucode
return {
|
|
station_update: 1000,
|
|
station_expiry: 120,
|
|
|
|
init: function() {
|
|
let options = uci.get_all('usteer2', '@base[-1]');
|
|
for (let key in options)
|
|
this[key] = options[key];
|
|
},
|
|
};
|