mirror of
https://github.com/tanrax/org-social-relay
synced 2026-06-05 10:26:33 +02:00
347369868d
New GET /profile/?feed={url} endpoint that returns the list of feed URLs
that follow the given profile, using the existing Follow model.
Includes cache support, 400/404 error handling, and 8 unit tests.
8 lines
144 B
Python
8 lines
144 B
Python
from django.urls import path
|
|
|
|
from app.profile.views import ProfileView
|
|
|
|
urlpatterns = [
|
|
path("", ProfileView.as_view(), name="profile"),
|
|
]
|