mirror of https://github.com/jitsi/jitsi-meet
parent
b9c20a3fd4
commit
0cef706b6a
@ -1,16 +1,16 @@ |
||||
// @flow
|
||||
|
||||
import { openDialog } from '../base/dialog'; |
||||
import { toggleDialog } from '../base/dialog'; |
||||
|
||||
import { SecurityDialog } from './components/security-dialog'; |
||||
|
||||
/** |
||||
* Action that triggers opening the security options dialog. |
||||
* Action that triggers toggle of the security options dialog. |
||||
* |
||||
* @returns {Function} |
||||
*/ |
||||
export function openSecurityDialog() { |
||||
export function toggleSecurityDialog() { |
||||
return function(dispatch: (Object) => Object) { |
||||
dispatch(openDialog(SecurityDialog)); |
||||
dispatch(toggleDialog(SecurityDialog)); |
||||
}; |
||||
} |
||||
|
Loading…
Reference in new issue