disabled site viewer

This commit is contained in:
Kevin Froman 2018-08-18 09:40:59 -05:00
parent 9655bfd872
commit a900c8eb0e
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 2 additions and 0 deletions

View File

@ -239,6 +239,7 @@ class API:
resp = Response('Goodbye')
elif action == 'ping':
resp = Response('pong')
'''#TODO Remove and replace with iframe
elif action == 'site':
block = data
siteData = self._core.getData(data)
@ -247,6 +248,7 @@ class API:
self.mimeType = 'text/html'
response = siteData.split(b'-', 2)[-1]
resp = Response(response)
'''
elif action == "insertBlock":
response = {'success' : False, 'reason' : 'An unknown error occurred'}