Add backup back to api

This commit is contained in:
JonnyWong16 2016-02-18 06:53:07 -08:00
parent e38e98d9e7
commit 1c8428c3ea
2 changed files with 13 additions and 2 deletions

View file

@ -1354,11 +1354,10 @@ class WebInterface(object):
return serve_template(templatename="scheduler_table.html")
@cherrypy.expose
@addtoapi()
def backup_db(self):
""" Creates a manual backup of the plexpy.db file """
result = database.make_backup(scheduler=False)
result = database.make_backup()
if result:
cherrypy.response.headers['Content-type'] = 'application/json'