8 lines
194 B
Plaintext
8 lines
194 B
Plaintext
local autoupdater = uci:get_all('autoupdater', 'settings')
|
|
if autoupdater then
|
|
return {
|
|
branch = autoupdater['branch'],
|
|
enabled = uci:get_bool('autoupdater', 'settings', 'enabled'),
|
|
}
|
|
end
|