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.
12345678910111213141516 |
- // @flow
-
- import { toggleDialog } from '../base/dialog';
-
- import { SecurityDialog } from './components/security-dialog';
-
- /**
- * Action that triggers toggle of the security options dialog.
- *
- * @returns {Function}
- */
- export function toggleSecurityDialog() {
- return function(dispatch: (Object) => Object) {
- dispatch(toggleDialog(SecurityDialog));
- };
- }
|