aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Posts/Services/PostService.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/Posts/Services/PostService.php')
-rw-r--r--api/Posts/Services/PostService.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/api/Posts/Services/PostService.php b/api/Posts/Services/PostService.php
index 812f638..0232af2 100644
--- a/api/Posts/Services/PostService.php
+++ b/api/Posts/Services/PostService.php
@@ -6,7 +6,6 @@ use Api\Posts\Events\PostWasCreated;
use Api\Posts\Events\PostWasDeleted;
use Api\Posts\Events\PostWasUpdated;
use Api\Posts\Exceptions\PostNotFoundException;
-use Api\Posts\Models\Post;
use Api\Posts\Repositories\PostRepository;
use Illuminate\Auth\AuthManager;
use Illuminate\Database\DatabaseManager;
@@ -36,7 +35,7 @@ class PostService
public function getAll($options = [])
{
- return $this->postRepository->get($options);
+ return $this->postRepository->getJoined($options);
}
public function getById($postId, array $options = [])
@@ -77,7 +76,7 @@ class PostService
private function getRequestedPost($postId)
{
- $post = Post::with('post_type')->with('user')->where('id', $postId)->get();
+ $post = $this->postRepository->getJoinedById($postId);
if (is_null($post)) {
throw new PostNotFoundException();