summaryrefslogtreecommitdiffstats
path: root/modules/repofiles/upload.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/repofiles/upload.go')
-rw-r--r--modules/repofiles/upload.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/repofiles/upload.go b/modules/repofiles/upload.go
index e3ec48ec0f..c261e188c1 100644
--- a/modules/repofiles/upload.go
+++ b/modules/repofiles/upload.go
@@ -24,6 +24,7 @@ type UploadRepoFileOptions struct {
TreePath string
Message string
Files []string // In UUID format.
+ Signoff bool
}
type uploadInfo struct {
@@ -143,7 +144,7 @@ func UploadRepoFiles(repo *models.Repository, doer *models.User, opts *UploadRep
committer := doer
// Now commit the tree
- commitHash, err := t.CommitTree(author, committer, treeHash, opts.Message)
+ commitHash, err := t.CommitTree(author, committer, treeHash, opts.Message, opts.Signoff)
if err != nil {
return err
}