disabled site viewer
This commit is contained in:
parent
9655bfd872
commit
a900c8eb0e
@ -239,6 +239,7 @@ class API:
|
|||||||
resp = Response('Goodbye')
|
resp = Response('Goodbye')
|
||||||
elif action == 'ping':
|
elif action == 'ping':
|
||||||
resp = Response('pong')
|
resp = Response('pong')
|
||||||
|
'''#TODO Remove and replace with iframe
|
||||||
elif action == 'site':
|
elif action == 'site':
|
||||||
block = data
|
block = data
|
||||||
siteData = self._core.getData(data)
|
siteData = self._core.getData(data)
|
||||||
@ -247,6 +248,7 @@ class API:
|
|||||||
self.mimeType = 'text/html'
|
self.mimeType = 'text/html'
|
||||||
response = siteData.split(b'-', 2)[-1]
|
response = siteData.split(b'-', 2)[-1]
|
||||||
resp = Response(response)
|
resp = Response(response)
|
||||||
|
'''
|
||||||
elif action == "insertBlock":
|
elif action == "insertBlock":
|
||||||
response = {'success' : False, 'reason' : 'An unknown error occurred'}
|
response = {'success' : False, 'reason' : 'An unknown error occurred'}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user