Files
ihrm/horilla_ldap/urls.py

14 lines
238 B
Python
Raw Normal View History

"""
urls.py
This module is used to map url path with view methods.
"""
from django.urls import path
2025-03-06 12:10:47 +05:30
from horilla_ldap import views
urlpatterns = [
2025-03-06 12:10:47 +05:30
path("settings/ldap-settings/", views.ldap_settings_view, name="ldap-settings"),
]