mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-14 03:22:04 +01:00
- Enhanced plugin installer to properly extract and install plugins - Added security middleware exception for plugin webhook endpoints - Improved plugin listing with better error handling - Added testPlugin as example plugin for CyberPanel plugin system - Updated INSTALLED_APPS and URL routing for plugins Author: master3395
9 lines
262 B
Python
9 lines
262 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.test_plugin_view, name='testPlugin'),
|
|
path('info/', views.plugin_info_view, name='testPluginInfo'),
|
|
path('settings/', views.settings_view, name='testPluginSettings'),
|
|
]
|