We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make sure the view functions in backend/api/views/post_views.py are converted to DRF. And integrated to what's been done so far in auth_views.py.
Caching is integrated for all post requests
Media handling is integrated for all post requests
Post related models are handled for all post requests
create_post is integrated => POST a single post
edit_post is integrated => PUT a single post
delete_post is integrated => DELETE a single post
get_user_posts is integrated => GET all post from a specified user
get_single_post is integrated => GET a single post from post_id
get_multiple_posts is integrated => GET posts from specified list of post_id
get_global_newsfeed => GET posts from specified post_type
get_newsfeed => GET posts from following, hashtags, limit
add_post_bookmark => POST a bookmark relative to a specified post_id
delete_post_bookmark => DELETE a bookmark relative to a specified post_id
get_bookmarked_posts => GET list of all bookmarked post
The text was updated successfully, but these errors were encountered:
fflorent-01
When branches are created from issues, their pull requests are automatically linked.
Make sure the view functions in backend/api/views/post_views.py are converted to DRF. And integrated to what's been done so far in auth_views.py.
Caching is integrated for all post requests
Media handling is integrated for all post requests
Post related models are handled for all post requests
create_post is integrated => POST a single post
edit_post is integrated => PUT a single post
delete_post is integrated => DELETE a single post
get_user_posts is integrated => GET all post from a specified user
get_single_post is integrated => GET a single post from post_id
get_multiple_posts is integrated => GET posts from specified list of post_id
get_global_newsfeed => GET posts from specified post_type
get_newsfeed => GET posts from following, hashtags, limit
add_post_bookmark => POST a bookmark relative to a specified post_id
delete_post_bookmark => DELETE a bookmark relative to a specified post_id
get_bookmarked_posts => GET list of all bookmarked post
The text was updated successfully, but these errors were encountered: