lib.itmens/social/urls.py

14 lines
362 B
Python
Raw Permalink Normal View History

from django.urls import path
2022-12-21 14:34:36 -05:00
from .views import *
2022-12-21 14:34:36 -05:00
2022-12-29 23:57:02 -05:00
app_name = "social"
2022-12-21 14:34:36 -05:00
urlpatterns = [
2022-12-29 23:57:02 -05:00
path("", feed, name="feed"),
2024-06-18 17:26:58 -04:00
path("focus", focus, name="focus"),
2022-12-29 23:57:02 -05:00
path("data", data, name="data"),
path("search_data", search_data, name="search_data"),
2024-04-19 20:24:34 -04:00
path("notification", notification, name="notification"),
path("events", events, name="events"),
2022-12-21 14:34:36 -05:00
]