Missing require auth for getLog

This commit is contained in:
JonnyWong16 2016-04-23 19:09:28 -07:00
parent 3abea4ad3c
commit 4be41336b3

View file

@ -1121,6 +1121,7 @@ class WebInterface(object):
return serve_template(templatename="logs.html", title="Log", lineList=plexpy.LOG_LIST)
@cherrypy.expose
@requireAuth(member_of("admin"))
def getLog(self, start=0, length=100, **kwargs):
start = int(start)
length = int(length)