You've already forked netbox-proxmox-power-button
added proxmox power button plugin 0.1
This commit is contained in:
13
proxmox_power_button/urls.py
Normal file
13
proxmox_power_button/urls.py
Normal 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",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user