Allow custom public files (#782)

* Allow custom public files

* Gofmt code, lots of places not related to this pr
This commit is contained in:
Thomas Boerger 2017-01-28 23:14:56 +01:00 committed by GitHub
parent cc31a21192
commit 78535fb08e
7 changed files with 26 additions and 6 deletions

View file

@ -31,7 +31,6 @@ type Attachment struct {
CreatedUnix int64
}
// BeforeInsert is invoked from XORM before inserting an object of this type.
func (a *Attachment) BeforeInsert() {
a.CreatedUnix = time.Now().Unix()

View file

@ -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)