Finished functionally complete email confirmation workflow
This commit is contained in:
@@ -1,10 +1,18 @@
|
||||
import {
|
||||
SEND_REGISTER_REQUEST
|
||||
SEND_REGISTER_REQUEST,
|
||||
SEND_EMAIL_VERIFICATION_REQUEST
|
||||
} from "../../constants/auth.constants";
|
||||
|
||||
export function sendRegisterRequest(postbody) {
|
||||
return {
|
||||
type: SEND_REGISTER_REQUEST,
|
||||
data: postbody
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export function sendEmailVerificationRequest(postbody) {
|
||||
return {
|
||||
type: SEND_EMAIL_VERIFICATION_REQUEST,
|
||||
data: postbody
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user