diff options
author | Unknwon <u@gogs.io> | 2015-09-01 09:29:52 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-01 09:29:52 -0400 |
commit | 8af094967fb0c09db817999bf8ff209251b183b8 (patch) | |
tree | 4af06f4e1ab2d1f30b4bb9da94cfc8ff1944a53e /modules/base | |
parent | f1adbca0f1e9aad55d23964cc95a8a42f0f66b1f (diff) | |
download | gitea-8af094967fb0c09db817999bf8ff209251b183b8.tar.gz gitea-8af094967fb0c09db817999bf8ff209251b183b8.zip |
#1377 add rename repo action
Diffstat (limited to 'modules/base')
-rw-r--r-- | modules/base/template.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index fb32734e37..7875010ddf 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -192,8 +192,12 @@ type Actioner interface { GetActEmail() string GetRepoUserName() string GetRepoName() string + GetRepoPath() string + GetRepoLink() string GetBranch() string GetContent() string + GetCreate() time.Time + GetIssueInfos() []string } // ActionIcon accepts a int that represents action operation type |