Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. GET '/' CHECKED
  2. GET '/contact' CHECKED
  3. GET '/termeni-si-conditii' CHECKED
  4.  
  5. GET '/profile' = show user profile
  6. GET '/persoane' = show all users CHECKED
  7. DELETE '/users/:id' = delete user by id [only current user/admin] CHECKED
  8.  
  9. GET '/users/:id/:id2/comments' = get comments for certain info belonging to certain user
  10. GET '/users/:id/info' = get all infos belonging to a specific user
  11.  
  12. GET '/creare-cont' CHECKED
  13. POST '/users' = create user account CHECKED
  14.  
  15. POST 'info' CHECKED
  16. PATCH 'info/:id' [only current user/admin] CHECKED
  17.  
  18. POST '/test' = add profile picture CHECKED
  19. GET '/images' = get all imageSchema objects (id, path, orginal name) CHEKED
  20. GET '/images/:id' = get the path for a specific image
  21.  
  22. POST '/comment' CHECKED
  23. DELETE '/comment/:id' [only current user/admin] CHECKED
  24.  
  25. GET '/login' CHECKED
  26. POST '/login' CHECKED
  27. GET '/logout' CHECKED
  28.  
  29. GET '/forgot'
  30. POST '/forgot' = send email to reset password
  31.  
  32. GET '/reset/:token'
  33. POST '/reset/:token' = reset password
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement