watch function edit
This commit is contained in:
parent
4d96fb8d44
commit
fd84c7ce8f
|
@ -34,6 +34,6 @@ function* regist(action: Action<MemberRegistPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchDomainMemberRegist(): SagaIterator {
|
export function* watchRegist(): SagaIterator {
|
||||||
yield takeLatest(MemberRegistActions.REQUEST, regist);
|
yield takeLatest(MemberRegistActions.REQUEST, regist);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,6 @@ function* regist(action: Action<RegistPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchDomainRegist(): SagaIterator {
|
export function* watchRegist(): SagaIterator {
|
||||||
yield takeLatest(RegistActions.REQUEST, regist);
|
yield takeLatest(RegistActions.REQUEST, regist);
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,6 @@ function* modify(action: Action<ModifyPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchEmailModify(): SagaIterator {
|
export function* watchModify(): SagaIterator {
|
||||||
yield takeLatest(ModifyAction.REQUEST, modify);
|
yield takeLatest(ModifyAction.REQUEST, modify);
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,6 @@ function* read(action: Action<ReadPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchEmailRead(): SagaIterator {
|
export function* watchRead(): SagaIterator {
|
||||||
yield takeLatest(ReadAction.REQUEST, read);
|
yield takeLatest(ReadAction.REQUEST, read);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,6 @@ function* modify(action: Action<ModifyPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchMemberModify(): SagaIterator {
|
export function* watchModify(): SagaIterator {
|
||||||
yield takeLatest(ModifyActions.REQUEST, modify);
|
yield takeLatest(ModifyActions.REQUEST, modify);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,6 @@ function* read(action: Action<ReadPayload>): SagaIterator {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function* watchMemberRead(): SagaIterator {
|
export function* watchRead(): SagaIterator {
|
||||||
yield takeLatest(ReadActions.REQUEST, read);
|
yield takeLatest(ReadActions.REQUEST, read);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user