Usman Nasir
2020-08-15 13:01:40 +05:00
parent 0806061d5a
commit 67842a725c
5 changed files with 32 additions and 4 deletions

View File

@@ -125,6 +125,14 @@ def searchWebsites(request):
except KeyError:
return redirect(loadLoginPage)
def searchChilds(request):
try:
userID = request.session['userID']
wm = WebsiteManager()
return wm.searchChilds(userID, json.loads(request.body))
except KeyError:
return redirect(loadLoginPage)
def getFurtherAccounts(request):
try:
userID = request.session['userID']