You've already forked netbox-proxmox-power-button
14 lines
293 B
Python
14 lines
293 B
Python
# 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",
|
|
),
|
|
]
|