David Thornley 6 年 前
コミット
8f82c6bf42
共有2 個のファイルを変更した1 個の追加0 個の削除を含む
  1. バイナリ
      .DS_Store
  2. 1
    0
      src/main/java/com/ziplinegreen/vault/Controller/PostController.java

バイナリ
.DS_Store ファイルの表示


+ 1
- 0
src/main/java/com/ziplinegreen/vault/Controller/PostController.java ファイルの表示

@@ -29,6 +29,7 @@ public class PostController {
29 29
         return postService.createPost(post);
30 30
     }
31 31
 
32
+    @CrossOrigin
32 33
     @GetMapping("/posts/all")
33 34
     public Iterable<Post> getAllPosts() {
34 35
         return postService.getAllPosts();