mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 07:46:07 -07:00
Missing require auth for getLog
This commit is contained in:
parent
3abea4ad3c
commit
4be41336b3
1 changed files with 1 additions and 0 deletions
|
@ -1121,6 +1121,7 @@ class WebInterface(object):
|
||||||
return serve_template(templatename="logs.html", title="Log", lineList=plexpy.LOG_LIST)
|
return serve_template(templatename="logs.html", title="Log", lineList=plexpy.LOG_LIST)
|
||||||
|
|
||||||
@cherrypy.expose
|
@cherrypy.expose
|
||||||
|
@requireAuth(member_of("admin"))
|
||||||
def getLog(self, start=0, length=100, **kwargs):
|
def getLog(self, start=0, length=100, **kwargs):
|
||||||
start = int(start)
|
start = int(start)
|
||||||
length = int(length)
|
length = int(length)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue