2016-05-10 19:28:40 -07:00
|
|
|
import fetchChallengesSaga from './fetch-challenges-saga';
|
2016-06-01 15:52:08 -07:00
|
|
|
import completionSaga from './completion-saga';
|
2016-06-10 10:45:29 -07:00
|
|
|
import nextChallengeSaga from './next-challenge-saga';
|
2016-06-13 12:26:30 -07:00
|
|
|
import answerSaga from './answer-saga';
|
2016-07-07 20:02:03 -07:00
|
|
|
import resetChallengeSaga from './reset-challenge-saga';
|
2016-07-11 21:54:55 -07:00
|
|
|
import bugSaga from './bug-saga';
|
2016-07-14 17:13:48 -07:00
|
|
|
import mapUiSaga from './map-ui-saga';
|
2016-08-31 14:06:03 -07:00
|
|
|
import stepChallengeEpic from './step-challenge-epic';
|
2016-06-01 15:52:08 -07:00
|
|
|
|
2016-06-23 20:05:30 -07:00
|
|
|
export * as actions from './actions';
|
|
|
|
export reducer from './reducer';
|
|
|
|
export types from './types';
|
|
|
|
|
2016-06-07 20:41:42 -07:00
|
|
|
export projectNormalizer from './project-normalizer';
|
|
|
|
|
2016-06-10 10:45:29 -07:00
|
|
|
export const sagas = [
|
|
|
|
fetchChallengesSaga,
|
|
|
|
completionSaga,
|
2016-06-13 12:26:30 -07:00
|
|
|
nextChallengeSaga,
|
2016-07-07 20:02:03 -07:00
|
|
|
answerSaga,
|
2016-07-11 21:54:55 -07:00
|
|
|
resetChallengeSaga,
|
2016-07-14 17:13:48 -07:00
|
|
|
bugSaga,
|
2016-08-31 14:06:03 -07:00
|
|
|
mapUiSaga,
|
|
|
|
stepChallengeEpic
|
2016-06-10 10:45:29 -07:00
|
|
|
];
|