Add functionality to switch back to OpenLiteSpeed: Implement server status utility methods, views, and frontend controller for switching from LiteSpeed Enterprise to OpenLiteSpeed. Include status checking and user notifications during the switch process, enhancing user experience and management capabilities.

This commit is contained in:
Master3395
2025-09-21 00:27:49 +02:00
parent 53aea56136
commit 5d445b0e23
5 changed files with 338 additions and 4 deletions

View File

@@ -13,6 +13,8 @@ urlpatterns = [
path('services', views.services, name='services'),
path('switchTOLSWS', views.switchTOLSWS, name='switchTOLSWS'),
path('switchTOLSWSStatus', views.switchTOLSWSStatus, name='switchTOLSWSStatus'),
path('switchToOLS', views.switchToOLS, name='switchToOLS'),
path('switchToOLSStatus', views.switchToOLSStatus, name='switchToOLSStatus'),
path('licenseStatus', views.licenseStatus, name='licenseStatus'),
path('changeLicense', views.changeLicense, name='changeLicense'),
path('refreshLicense', views.refreshLicense, name='refreshLicense'),