Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

actions.js 510B

1234567891011121314151617181920212223242526272829
  1. // @flow
  2. import { HIDE_APP_SETTINGS, SHOW_APP_SETTINGS } from './actionTypes';
  3. /**
  4. * Redux-signals the request to hide the app settings modal.
  5. *
  6. * @returns {{
  7. * type: HIDE_APP_SETTINGS
  8. * }}
  9. */
  10. export function hideAppSettings() {
  11. return {
  12. type: HIDE_APP_SETTINGS
  13. };
  14. }
  15. /**
  16. * Redux-signals the request to open the app settings modal.
  17. *
  18. * @returns {{
  19. * type: SHOW_APP_SETTINGS
  20. * }}
  21. */
  22. export function showAppSettings() {
  23. return {
  24. type: SHOW_APP_SETTINGS
  25. };
  26. }