mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
23 lines
No EOL
666 B
Python
23 lines
No EOL
666 B
Python
from aiohttp import web
|
|
from aiojobs.aiohttp import get_scheduler_from_app
|
|
|
|
from core.api.decorator import request_mapping
|
|
|
|
|
|
class SystemController():
|
|
name = "Manuel"
|
|
|
|
def __init__(self, cbpi):
|
|
self.cbpi = cbpi
|
|
self.service = cbpi.actor
|
|
self.cbpi.register(self, "/system")
|
|
|
|
@request_mapping("/jobs", method="GET", name="get_jobs", auth_required=True)
|
|
def get_all_jobs(self, request):
|
|
scheduler = get_scheduler_from_app(self.cbpi.app)
|
|
print(scheduler.active_count, scheduler.pending_limit)
|
|
for j in scheduler:
|
|
print(j)
|
|
|
|
# await j.close()
|
|
return web.Response(text="HALLO") |