diff options
author | Thomas Boerger <thomas@webhippie.de> | 2017-01-28 23:14:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-28 23:14:56 +0100 |
commit | 78535fb08ebe667f27da6b44a9af52aae1148434 (patch) | |
tree | fa4f539811b8e66ae7aa7f177702180642844bc3 /models/pull.go | |
parent | cc31a21192cba31cc2ede74b44f1c4e19621d4f7 (diff) | |
download | gitea-78535fb08ebe667f27da6b44a9af52aae1148434.tar.gz gitea-78535fb08ebe667f27da6b44a9af52aae1148434.zip |
Allow custom public files (#782)
* Allow custom public files
* Gofmt code, lots of places not related to this pr
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index ab057ac326..382738bf29 100644 --- a/models/pull.go +++ b/models/pull.go @@ -14,6 +14,7 @@ import ( "time" "code.gitea.io/git" + "code.gitea.io/gitea/modules/base" "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/process" "code.gitea.io/gitea/modules/setting" @@ -21,7 +22,6 @@ import ( api "code.gitea.io/sdk/gitea" "github.com/Unknwon/com" "github.com/go-xorm/xorm" - "code.gitea.io/gitea/modules/base" ) var pullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLength) |