5f0c1687b5
* remove apiv2 behavior from ops * remove apiv2 behavior from fns
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
import _ from 'lodash';
|
|
import autoAllocate from '../fns/autoAllocate';
|
|
|
|
module.exports = function allocateNow (user) {
|
|
_.times(user.stats.points, () => autoAllocate(user));
|
|
user.stats.points = 0;
|
|
|
|
return [
|
|
user.stats,
|
|
];
|
|
};
|