feat(config_management): Ability to add a host to a config group

!17 #42
This commit is contained in:
2024-06-03 06:25:30 +09:30
parent 746b7ac747
commit fff51e38d2
9 changed files with 235 additions and 28 deletions

View File

@ -12,4 +12,5 @@ urlpatterns = [
path('group/<int:pk>', GroupView.as_view(), name='_group_view'),
path('group/<int:pk>/delete', GroupDelete.as_view(), name='_group_delete'),
path('group/<int:group_id>/host', GroupHostAdd.as_view(), name='_group_add_host'),
]