(refs #12) Change the Markdown notation of images.

This commit is contained in:
shimamoto
2014-04-27 19:11:14 +09:00
parent 1f66670819
commit 63c4e12259
2 changed files with 9 additions and 2 deletions

View File

@@ -273,6 +273,11 @@ trait IssuesControllerBase extends ControllerBase {
}
})
get("/:owner/:repository/_attached/:file")(referrersOnly { repository =>
println("----" + params("file"))
})
val assignedUserName = (key: String) => params.get(key) filter (_.trim != "")
val milestoneId: String => Option[Int] = (key: String) => params.get(key).flatMap(_.toIntOpt)