Skip to content

anndoc/slated_tasks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Project

Create a small, working Django site that serves a simple activity feed list with 3 filters:

  • My posts
  • Me and the posts of everyone I’m tracking (note: use an asymmetric relationship, meaning, “Even if I track you, you may or may not track me”.)
  • Everybody’s posts

API endpoint

Get users posts

`/?post=(my|all|tracking) (GET)`

Returns

[
    {
    'pk': <int>,
    'content': <text>,
    'username': <text>
    }
]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages