This repository has been archived by the owner on Oct 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ProgramingIsTheFuture
authored and
ProgramingIsTheFuture
committed
Feb 8, 2022
1 parent
e984c31
commit 2f0234f
Showing
19 changed files
with
99 additions
and
49 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Endpoints | ||
|
||
All Endpoints from django application | ||
|
||
<ul> | ||
<h1>Endpoints</h1> | ||
<h2>localhost:8000</h2> | ||
<li>/auth <span>Get the JWT Token</span></li> | ||
<h2>/api/</h2> | ||
<ul> | ||
<h2>posts/</h2> | ||
<li><h3>list-posts/</h3> <span>Get a list of all posts from people I follow</span></li> | ||
<li><h3>get-user-posts/</h3> <span>Get a list of all posts a unique user</span></li> | ||
<li><h3>create-posts/</h3> <span>Create a new Post</span></li> | ||
<li><h3>delete-post/</h3> <span>Delete a post if i'm the owner</span></li> | ||
<li><h3>like-unlike-posts/</h3> <span>Like or Remove the like from a unique post</span></li> | ||
<li><h3>check-like-post/</h3> <span>check if i have my like in a certain post</span></li> | ||
<li><h3>search-user-post/</h3> <span>send the request with ?search=<value> to look for a post</span></li> | ||
</ul> | ||
<ul> | ||
<h2>users/</h2> | ||
<li><h3>create/</h3> <span>Create a user with all fields</span></li> | ||
<li><h3>change-password/</h3> <span>change the password<span></li> | ||
<li><h3>get-user/</h3> <span>returns the username from the guy that send the token<span></li> | ||
<li><h3>login/</h3> <span>Login a user</span></li> | ||
<li><h3>logout/</h3> <span>logout the user</span></li> | ||
</ul> | ||
<ul> | ||
<h2>profile/</h2> | ||
<li><h3>get-profile/</h3> <span>get the users profile with the username</span></li> | ||
<li><h3>search-profile/</h3> <span>send the request with ?search=<value> to look for a profile</span></li> | ||
<li><h3>follow-unfollow/</h3> <span>To follow or unfollow a user</span></li> | ||
<li><h3>check-follow-profile/</h3> <span>Checks if the user is already been followed</span></li> | ||
<li><h3>edit-my-profile/</h3> <span>Edit your own profile</span></li> | ||
</ul> | ||
<ul> | ||
<h2>chat/</h2> | ||
<li><h3>all-messages/</h3> <span>get all the messages</span></li> | ||
<li><h3>list-users/</h3> <span>List the users that i'm following or that sent me a message</span></li> | ||
<li><h3>list-notifications/</h3> <span>List all my notifications</span></li> | ||
</ul> | ||
<ul> | ||
<h2>stories/</h2> | ||
<li><h3>post-storie/</h3> <span>create a new storie</span></li> | ||
<li><h3>list-stories/</h3> <span>List the stories available for that user</span></li> | ||
</ul> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters