Body:
We should add an API endpoint to list all quotes (paginated), so users can browse:
Example:
/qotd/api/list/
Returns JSON list of:
[
{ "author": "...", "text": "...", ... },
...
]
Why?
Useful for browsing
Helps for frontend apps
Helps authors check their quotes
Easy first task — adds a new API endpoint
Body:
We should add an API endpoint to list all quotes (paginated), so users can browse:
Example:
/qotd/api/list/
Returns JSON list of:
[
{ "author": "...", "text": "...", ... },
...
]
Why?