Closes #688 - Drop user_id column

This commit is contained in:
James Brooks
2015-06-10 13:33:00 +01:00
parent d9e515c62d
commit 620e7fed56
12 changed files with 78 additions and 27 deletions

View File

@@ -57,7 +57,6 @@ class ComponentController extends AbstractApiController
public function postComponents(Guard $auth)
{
$componentData = Binput::except('tags');
$componentData['user_id'] = $auth->user()->id;
try {
$component = Component::create($componentData);