2017-10-12 10:00:28 +08:00
|
|
|
import Breakouts from '/imports/api/breakouts';
|
2016-11-07 23:52:39 +08:00
|
|
|
|
2018-07-07 01:46:07 +08:00
|
|
|
const getBreakouts = () => Breakouts.find().fetch().sort((a, b) => a.sequence > b.sequence);
|
2018-06-07 06:18:27 +08:00
|
|
|
|
2016-11-07 23:52:39 +08:00
|
|
|
export default {
|
|
|
|
getBreakouts,
|
|
|
|
};
|
2018-07-07 01:46:07 +08:00
|
|
|
|