mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-28 18:29:05 +01:00
- Added Modify Date column to both Table View and Plugin Store - Implemented GitHub API integration to fetch last commit dates - Added caching system for plugin store to prevent rate limit errors - Enhanced plugin store with installed/enabled status enrichment - Added comprehensive plugin development guide - Updated testPlugin meta.xml author to usmannasir
15 lines
798 B
Python
15 lines
798 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('installed', views.installed, name='installed'),
|
|
path('help/', views.help_page, name='help'),
|
|
path('api/install/<str:plugin_name>/', views.install_plugin, name='install_plugin'),
|
|
path('api/uninstall/<str:plugin_name>/', views.uninstall_plugin, name='uninstall_plugin'),
|
|
path('api/enable/<str:plugin_name>/', views.enable_plugin, name='enable_plugin'),
|
|
path('api/disable/<str:plugin_name>/', views.disable_plugin, name='disable_plugin'),
|
|
path('api/store/plugins/', views.fetch_plugin_store, name='fetch_plugin_store'),
|
|
path('api/store/install/<str:plugin_name>/', views.install_from_store, name='install_from_store'),
|
|
path('<str:plugin_name>/help/', views.plugin_help, name='plugin_help'),
|
|
]
|