File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 232232 'get' : 'retrieve' , 'patch' : 'partial_update' , 'delete' : 'destroy' })),
233233 url (r'^flavors/?' ,
234234 views .FlavorViewSet .as_view ({'post' : 'create' , 'get' : 'list' })),
235- # formation base endpoint
236- url (r'^formations/(?P<id>[a-z0-9-]+)/?' ,
237- views .FormationViewSet .as_view ({'get' : 'retrieve' , 'delete' : 'destroy' })),
238- url (r'^formations/?' ,
239- views .FormationViewSet .as_view ({'post' : 'create' , 'get' : 'list' })),
240235 # formation infrastructure
241236 url (r'^formations/(?P<id>[a-z0-9-]+)/layers/(?P<layer>[a-z0-9-]+)/?' ,
242237 views .FormationLayerViewSet .as_view ({
272267 views .FormationViewSet .as_view ({'post' : 'calculate' })),
273268 url (r'^formations/(?P<id>[a-z0-9-]+)/converge/?' ,
274269 views .FormationViewSet .as_view ({'post' : 'converge' })),
270+ # formation base endpoint
271+ url (r'^formations/(?P<id>[a-z0-9-]+)/?' ,
272+ views .FormationViewSet .as_view ({'get' : 'retrieve' , 'delete' : 'destroy' })),
273+ url (r'^formations/?' ,
274+ views .FormationViewSet .as_view ({'post' : 'create' , 'get' : 'list' })),
275275
276276 # authn / authz
277277 url (r'^auth/register/?' ,
You can’t perform that action at this time.
0 commit comments