diff options
author | Kjell Kvinge <kjell@kvinge.biz> | 2016-12-29 00:44:32 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2016-12-29 07:44:32 +0800 |
commit | 22e1bd31c68586e963262db964d6a83f6115e56f (patch) | |
tree | 39d669cd4b982063512320e91ed359357a518f1f /cmd | |
parent | 35d9378e4e1b3b1c15db3a7e7237a55fa96919a1 (diff) | |
download | gitea-22e1bd31c68586e963262db964d6a83f6115e56f.tar.gz gitea-22e1bd31c68586e963262db964d6a83f6115e56f.zip |
commithgraph / timeline (#428)
* Add model and tests for graph
* Add route and router for graph
* Add assets for graph
* Add template for graph
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go index e6f6820a6e..45d198fdfb 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -547,6 +547,7 @@ func runWeb(ctx *cli.Context) error { m.Get("/src/*", repo.SetEditorconfigIfExists, repo.Home) m.Get("/raw/*", repo.SingleDownload) m.Get("/commits/*", repo.RefCommits) + m.Get("/graph", repo.Graph) m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.Diff) m.Get("/forks", repo.Forks) }, context.RepoRef()) |