Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

loginUserDesc.js 967B

1234567891011121314151617181920212223242526272829303132333435
  1. module.exports = {
  2. post: {
  3. tags: ["Token"],
  4. description: "Log in user",
  5. parameters: [],
  6. requestBody: {
  7. content: {
  8. "application/json": {
  9. schema: {
  10. type: "object",
  11. properties: {
  12. email: {
  13. type: "string"
  14. },
  15. password: {
  16. type: "string"
  17. }
  18. }
  19. }
  20. }
  21. }
  22. },
  23. responses: {
  24. 201: {
  25. description: "User logged in successfully!"
  26. },
  27. 400: {
  28. description: "Wrong credentials!"
  29. },
  30. 500: {
  31. description: "Internal server error"
  32. }
  33. }
  34. }
  35. }