index.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import {
  2. actionFullLogout,
  3. actionFullLogin,
  4. actionFullRegister,
  5. actionSetUserInfo,
  6. actionSetUserPass,
  7. } from "./authActions";
  8. import { actionOnMsg, actionOnChat, actionOnChatLeft } from "./socketActions";
  9. import {
  10. actionSetChatInfo,
  11. actionGetChatsByUser,
  12. actionFullChatList,
  13. actionGetChatById,
  14. actionChatsCount,
  15. removeUserChat,
  16. } from "./chatsActions";
  17. import { actionFindUsers, actionFindChatsByUser } from "./findActions";
  18. import { actionUploadFile } from "./mediaActions";
  19. import {
  20. actionGetMsgsByChat,
  21. actionFullMsgsByChat,
  22. actionGetAllLastMsg,
  23. actionMsgsCount,
  24. actionGetMsgById,
  25. actionSendMsg,
  26. } from "./msgActions";
  27. export {
  28. actionFullLogout,
  29. actionFullLogin,
  30. actionFullRegister,
  31. actionSetUserInfo,
  32. actionSetUserPass,
  33. actionOnMsg,
  34. actionOnChat,
  35. actionOnChatLeft,
  36. actionSetChatInfo,
  37. actionGetChatsByUser,
  38. actionFullChatList,
  39. actionGetChatById,
  40. actionChatsCount,
  41. removeUserChat,
  42. actionFindUsers,
  43. actionFindChatsByUser,
  44. actionUploadFile,
  45. actionGetMsgsByChat,
  46. actionFullMsgsByChat,
  47. actionGetAllLastMsg,
  48. actionMsgsCount,
  49. actionGetMsgById,
  50. actionSendMsg,
  51. };