mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 18:36:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			606 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			606 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.urls import path
 | |
| from . import views
 | |
| 
 | |
| urlpatterns = [
 | |
|     path('upload', views.upload, name='upload'),
 | |
|     path('changePermissions', views.changePermissions, name='changePermissions'),
 | |
|     path('controller', views.controller, name='controller'),
 | |
|     path('downloadFile', views.downloadFile, name='downloadFile'),
 | |
|     path('RootDownloadFile', views.RootDownloadFile, name='RootDownloadFile'),
 | |
|     path('editFile', views.editFile, name='editFile'),
 | |
|     path('Filemanager', views.FileManagerRoot, name='Filemanager'),
 | |
|     path('<domain>', views.loadFileManagerHome, name='loadFileManagerHome'),
 | |
| ]
 |