added proxmox power button plugin 0.1

This commit is contained in:
2026-08-05 04:46:26 +02:00
parent 28fa9afa28
commit c8f5baedde
15 changed files with 817 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2026 Bryan Joshua Pedini
from django.urls import path
from . import views
urlpatterns = [
path(
"virtual-machines/<int:pk>/power/<str:action>/",
views.VMPowerActionView.as_view(),
name="power",
),
]