Files
frontend-app-learning/src/courseware/data/index.js
Michael Terry 3c52eb2e8d feat: stop calling course blocks rest API and assume LS exists (#803)
- Assume that Learning Sequences is available (waffle has been
  removed)
- Stop calling course blocks API, which provided mostly duplicated
  information now.
- Refactor a bit to avoid needing to globally know which units
  exist in sequences. That is now provided just-in-time for only
  the current sequence.
- Add /first and /last URLs that you can use instead of unit IDs
  in URL paths, in service of the above point.

AA-1040
AA-1153
2022-02-17 14:10:24 -05:00

17 lines
321 B
JavaScript

export {
fetchCourse,
fetchSequence,
checkBlockCompletion,
saveIntegritySignature,
saveSequencePosition,
} from './thunks';
export {
getResumeBlock,
getSequenceForUnitDeprecated,
sendActivationEmail,
} from './api';
export {
sequenceIdsSelector,
} from './selectors';
export { reducer } from './slice';