Explorar el Código

and another thing

David Thornley hace 6 años
padre
commit
b54d7c6e79

+ 1
- 1
src/main/java/com/ziplinegreen/vault/Controller/PostController.java Ver fichero

@@ -46,7 +46,7 @@ public class PostController {
46 46
 //    }
47 47
 
48 48
     @GetMapping("/posts/all")
49
-    Page<Post> pageAllPosts(Pageable pageable) {
49
+    public Page<Post> pageAllPosts(Pageable pageable) {
50 50
        return postService.listAllPostsByPageMostRecentFirst(pageable);
51 51
     }
52 52