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

12345678910111213141516
  1. import { IStore } from '../app/types';
  2. import { toggleDialog } from '../base/dialog/actions';
  3. // @ts-ignore
  4. import { SecurityDialog } from './components/security-dialog';
  5. /**
  6. * Action that triggers toggle of the security options dialog.
  7. *
  8. * @returns {Function}
  9. */
  10. export function toggleSecurityDialog() {
  11. return function(dispatch: IStore['dispatch']) {
  12. dispatch(toggleDialog(SecurityDialog));
  13. };
  14. }