diff --git a/src/ts/@overflow/domain/redux/saga/member_regist.ts b/src/ts/@overflow/domain/redux/saga/member_regist.ts index 493d6c7..cede59f 100644 --- a/src/ts/@overflow/domain/redux/saga/member_regist.ts +++ b/src/ts/@overflow/domain/redux/saga/member_regist.ts @@ -34,6 +34,6 @@ function* regist(action: Action): SagaIterator { } } -export function* watchDomainMemberRegist(): SagaIterator { +export function* watchRegist(): SagaIterator { yield takeLatest(MemberRegistActions.REQUEST, regist); } diff --git a/src/ts/@overflow/domain/redux/saga/regist.ts b/src/ts/@overflow/domain/redux/saga/regist.ts index 6916d4d..2e1c80c 100644 --- a/src/ts/@overflow/domain/redux/saga/regist.ts +++ b/src/ts/@overflow/domain/redux/saga/regist.ts @@ -34,6 +34,6 @@ function* regist(action: Action): SagaIterator { } } -export function* watchDomainRegist(): SagaIterator { +export function* watchRegist(): SagaIterator { yield takeLatest(RegistActions.REQUEST, regist); } diff --git a/src/ts/@overflow/email/redux/saga/modify.ts b/src/ts/@overflow/email/redux/saga/modify.ts index 3d7bc05..3dcf6e8 100644 --- a/src/ts/@overflow/email/redux/saga/modify.ts +++ b/src/ts/@overflow/email/redux/saga/modify.ts @@ -39,6 +39,6 @@ function* modify(action: Action): SagaIterator { } } -export function* watchEmailModify(): SagaIterator { +export function* watchModify(): SagaIterator { yield takeLatest(ModifyAction.REQUEST, modify); } diff --git a/src/ts/@overflow/email/redux/saga/read.ts b/src/ts/@overflow/email/redux/saga/read.ts index 9efad75..742ef99 100644 --- a/src/ts/@overflow/email/redux/saga/read.ts +++ b/src/ts/@overflow/email/redux/saga/read.ts @@ -35,6 +35,6 @@ function* read(action: Action): SagaIterator { } } -export function* watchEmailRead(): SagaIterator { +export function* watchRead(): SagaIterator { yield takeLatest(ReadAction.REQUEST, read); } diff --git a/src/ts/@overflow/member/redux/saga/modify.ts b/src/ts/@overflow/member/redux/saga/modify.ts index 1905bb4..d3dfa4d 100644 --- a/src/ts/@overflow/member/redux/saga/modify.ts +++ b/src/ts/@overflow/member/redux/saga/modify.ts @@ -34,6 +34,6 @@ function* modify(action: Action): SagaIterator { } } -export function* watchMemberModify(): SagaIterator { +export function* watchModify(): SagaIterator { yield takeLatest(ModifyActions.REQUEST, modify); } diff --git a/src/ts/@overflow/member/redux/saga/read.ts b/src/ts/@overflow/member/redux/saga/read.ts index c81ddd3..10d31be 100644 --- a/src/ts/@overflow/member/redux/saga/read.ts +++ b/src/ts/@overflow/member/redux/saga/read.ts @@ -34,6 +34,6 @@ function* read(action: Action): SagaIterator { } } -export function* watchMemberRead(): SagaIterator { +export function* watchRead(): SagaIterator { yield takeLatest(ReadActions.REQUEST, read); }