12 lines
453 B
Python
12 lines
453 B
Python
|
from django.urls import re_path, include
|
||
|
from rest_framework.urlpatterns import format_suffix_patterns
|
||
|
from .views import VmCreateView, VmDetailsView
|
||
|
|
||
|
urlpatterns = {
|
||
|
re_path(r'^auth/', include('rest_framework.urls', namespace='rest_framework')),
|
||
|
re_path(r'^vms/$', VmCreateView.as_view(), name="vm_create"),
|
||
|
re_path(r'^vms/(?P<pk>[0-9]+)/$', VmDetailsView.as_view(), name="vm_details"),
|
||
|
}
|
||
|
|
||
|
urlpatterns = format_suffix_patterns(urlpatterns)
|