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.
6 lines
150 B
Python
6 lines
150 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ProfileConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "app.profile"
|