Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Verified Commit aa4ca1af authored by Vincent SIMONIN's avatar Vincent SIMONIN
Browse files

Remove commented lines

parent b675e68b
No related branches found
No related tags found
1 merge request!29Add Mapping Saml configuration UI
Pipeline #78447 passed
This commit is part of merge request !29. Comments created here will be created in the context of that merge request.
from rest_framework import serializers
from ..models import Mapping, HttpHeader, SamlConfig
from netbox.api.serializers import NetBoxModelSerializer, WritableNestedSerializer
from pprint import pp
class NestedMappingSerializer(WritableNestedSerializer):
......
......@@ -37,15 +37,7 @@ urlpatterns = (
}),
# Saml Config
#path('saml-configs/', views.HttpHeaderListView.as_view(), name='samlconfig_list'),
path('saml-configs/add/', views.SamlConfigEditView.as_view(), name='samlconfig_add'),
#path('saml-configs/<int:pk>/', views.HttpHeaderView.as_view(), name='samlconfig'),
path('saml-configs/<int:pk>/edit/', views.SamlConfigEditView.as_view(), name='samlconfig_edit'),
path('saml-configs/<int:pk>/delete/', views.SamlConfigDeleteView.as_view(), name='samlconfig_delete'),
#path('saml-configs/<int:pk>/changelog/', ObjectChangeLogView.as_view(), name='samlconfig_changelog', kwargs={
# 'model': models.SamlConfig
#}),
#path('saml-configs/<int:pk>/journal/', ObjectJournalView.as_view(), name='samlconfig_journal', kwargs={
# 'model': models.SamlConfig
#}),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment