(c *context.Context, f form.EditRepoFile)
| 292 | } |
| 293 | |
| 294 | func EditFilePost(c *context.Context, f form.EditRepoFile) { |
| 295 | editFilePost(c, f, false) |
| 296 | } |
| 297 | |
| 298 | func NewFilePost(c *context.Context, f form.EditRepoFile) { |
| 299 | editFilePost(c, f, true) |
nothing calls this directly
no test coverage detected