Browse Source

Move git graph from models to modules/graph (#9027)

tags/v1.11.0-rc1
Lunny Xiao GitHub 5 years ago
parent
commit
3ce152a637
3 changed files with 4 additions and 3 deletions
  1. +1
    -1
      modules/gitgraph/graph.go
  2. +1
    -1
      modules/gitgraph/graph_test.go
  3. +2
    -1
      routers/repo/commit.go

models/graph.go → modules/gitgraph/graph.go View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package models
package gitgraph

import (
"fmt"

models/graph_test.go → modules/gitgraph/graph_test.go View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package models
package gitgraph

import (
"fmt"

+ 2
- 1
routers/repo/commit.go View File

@@ -14,6 +14,7 @@ import (
"code.gitea.io/gitea/modules/charset"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/gitgraph"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/services/gitdiff"
@@ -99,7 +100,7 @@ func Graph(ctx *context.Context) {

page := ctx.QueryInt("page")

graph, err := models.GetCommitGraph(ctx.Repo.GitRepo, page)
graph, err := gitgraph.GetCommitGraph(ctx.Repo.GitRepo, page)
if err != nil {
ctx.ServerError("GetCommitGraph", err)
return


Loading…
Cancel
Save