mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 01:02:59 -07:00
Add queued tasks modal
This commit is contained in:
parent
c098175ba9
commit
d731ad851c
6 changed files with 154 additions and 17 deletions
|
@ -2995,6 +2995,11 @@ class WebInterface(object):
|
|||
def get_scheduler_table(self, **kwargs):
|
||||
return serve_template(templatename="scheduler_table.html")
|
||||
|
||||
@cherrypy.expose
|
||||
@requireAuth(member_of("admin"))
|
||||
def get_queue_modal(self, queue=None, **kwargs):
|
||||
return serve_template(templatename="queue_modal.html", queue=queue)
|
||||
|
||||
@cherrypy.expose
|
||||
@cherrypy.tools.json_out()
|
||||
@requireAuth(member_of("admin"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue