from django.urls import path from .views import RoleSuggestionsView urlpatterns = [ path('', RoleSuggestionsView.as_view(), name='role-suggestions'), ]