aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-27 22:42:45 +0000
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-27 22:42:45 +0000
commit62a6c04c1af29bed1153a7deb01fa57fa5cc89d1 (patch)
tree4897c6685a17940548778dd5e19b0e0dbb11a12d /src
parentdebian: 2.4-1 (diff)
parentupdate example screenshot (diff)
downloadlinux-status-62a6c04c1af29bed1153a7deb01fa57fa5cc89d1.tar.gz
linux-status-62a6c04c1af29bed1153a7deb01fa57fa5cc89d1.zip
Merge tag 'v2.4.1' into debian
Diffstat (limited to 'src')
-rwxr-xr-xsrc/app.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app.py b/src/app.py
index 3964a38..274ff7b 100755
--- a/src/app.py
+++ b/src/app.py
@@ -585,6 +585,7 @@ def cgi_one_value(params, name, default=None):
class Request(Enum):
STATUS = 'status'
TOP = 'top'
+ THERMAL = 'thermal'
REBOOT = 'reboot'
POWEROFF = 'poweroff'
@@ -610,6 +611,8 @@ class Request(Enum):
return Status().complete()
if self is Request.TOP:
return Top().complete()
+ if self is Request.THERMAL:
+ return ThermalInfo().complete()
if self in [Request.REBOOT, Request.POWEROFF] and self.disable_power:
return Response(None, HTTPStatus.FORBIDDEN)