aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/commit.go')
-rw-r--r--routers/repo/commit.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go
index e51e81c8..19803dc6 100644
--- a/routers/repo/commit.go
+++ b/routers/repo/commit.go
@@ -11,14 +11,14 @@ import (
"github.com/gogits/git-module"
"github.com/gogits/gogs/models"
- "github.com/gogits/gogs/pkg/tool"
"github.com/gogits/gogs/pkg/context"
"github.com/gogits/gogs/pkg/setting"
+ "github.com/gogits/gogs/pkg/tool"
)
const (
- COMMITS tool.TplName = "repo/commits"
- DIFF tool.TplName = "repo/diff/page"
+ COMMITS = "repo/commits"
+ DIFF = "repo/diff/page"
)
func RefCommits(ctx *context.Context) {