mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 05:45:59 +01:00
debian 12: add missing views to views.py in websitefunctions
This commit is contained in:
@@ -2206,3 +2206,31 @@ def fetchWPBackups(request):
|
||||
|
||||
except KeyError:
|
||||
return redirect(loadLoginPage)
|
||||
|
||||
def fixSubdomainLogs(request):
|
||||
try:
|
||||
userID = request.session['userID']
|
||||
|
||||
|
||||
wm = WebsiteManager()
|
||||
coreResult = wm.fixSubdomainLogs(userID)
|
||||
|
||||
|
||||
return coreResult
|
||||
|
||||
except KeyError:
|
||||
return redirect(loadLoginPage)
|
||||
|
||||
def fixSubdomainLogsAction(request):
|
||||
try:
|
||||
userID = request.session['userID']
|
||||
|
||||
|
||||
wm = WebsiteManager()
|
||||
coreResult = wm.fixSubdomainLogsAction(userID)
|
||||
|
||||
|
||||
return coreResult
|
||||
|
||||
except KeyError:
|
||||
return redirect(loadLoginPage)
|
||||
Reference in New Issue
Block a user