This commit is contained in:
Parpaillax
2024-04-25 10:02:50 +02:00
parent 6ffe121111
commit aa6216a926
5 changed files with 11 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ public class ArticleServiceImpl implements ArticleService{
@Override
public Article findArticleById(int id) {
return null;
return articleRepository.findArticleById(id);
}
@Override