Files
ihrm/horilla_ldap/urls.py
2025-03-06 12:10:47 +05:30

14 lines
238 B
Python

"""
urls.py
This module is used to map url path with view methods.
"""
from django.urls import path
from horilla_ldap import views
urlpatterns = [
path("settings/ldap-settings/", views.ldap_settings_view, name="ldap-settings"),
]