File size: 374 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { EMAIL_VERIFY_REQUEST, EMAIL_VERIFY_STATE_RESET } from 'calypso/state/action-types';

import 'calypso/state/data-layer/wpcom/me/send-verification-email';

export const verifyEmail = ( { showGlobalNotices = false } = {} ) => ( {
	type: EMAIL_VERIFY_REQUEST,
	showGlobalNotices,
} );

export const resetVerifyEmailState = () => ( { type: EMAIL_VERIFY_STATE_RESET } );