github.com/jacobsoderblom/buffalo@v0.11.0/buffalo/cmd/filetests/generate_action_all.json (about)

     1  [{
     2    "path": "actions/comments.go",
     3    "contains": [
     4      "func CommentsShow(c buffalo.Context) error {",
     5  	  "func CommentsEdit(c buffalo.Context) error {",
     6      "comments/edit.html",
     7  	  "comments/show.html"
     8    ]
     9  },
    10  {
    11    "path": "actions/app.go",
    12    "contains": [
    13      "app.GET(\"/comments/show\", CommentsShow)",
    14      "app.GET(\"/comments/edit\", CommentsEdit)"
    15    ]
    16  },
    17  {
    18    "path": "templates/comments/show.html",
    19    "contains": [
    20      "<h1>Comments#Show</h1>"
    21    ]
    22  }]