Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

actions.js 369B

12345678910111213141516
  1. // @flow
  2. import { toggleDialog } from '../base/dialog';
  3. import { SecurityDialog } from './components/security-dialog';
  4. /**
  5. * Action that triggers toggle of the security options dialog.
  6. *
  7. * @returns {Function}
  8. */
  9. export function toggleSecurityDialog() {
  10. return function(dispatch: (Object) => Object) {
  11. dispatch(toggleDialog(SecurityDialog));
  12. };
  13. }