Ver Fonte

Update StoryController, add postgres bug fix

Daniel Supernault há 3 anos atrás
pai
commit
ddf41dc347
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      app/Http/Controllers/StoryController.php

+ 2 - 0
app/Http/Controllers/StoryController.php

@@ -46,6 +46,8 @@ class StoryController extends StoryComposeController
 					$r  = new \StdClass;
 					$r->id = $s->id;
 					$r->profile_id = $s->profile_id;
+					$r->type = $s->type;
+					$r->path = $s->path;
 					return $r;
 				})
 				->unique('profile_id');