Auto actions on moved item now work. Fixes #153.

This commit is contained in:
kiswa 2015-12-04 13:04:40 -05:00
parent 60033fd92b
commit 8d95a9ed0e

View File

@ -145,6 +145,7 @@ $app->post('/items/positions', function() use ($app, $jsonResponse) {
}
$item->position = $posItem->position;
R::store($item);
runAutoActions($item);
R::store($item);
}