aboutsummaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorRémy Boulanouar <rboulanouar@gmail.com>2017-02-01 02:53:48 +0100
committer无闻 <u@gogs.io>2017-01-31 20:53:48 -0500
commitbe3a13a0d6e5ba00cf364db4fada77f9f77e3521 (patch)
tree742780bb034e2175c94983e802ad9f937da88704 /models
parentd293aa9ced0108b3342053c34ed9147de1c8f2af (diff)
Allow use to set an external tracker url and to redirect user when clicking in Issues same behavior as Wiki. (#3646)
Diffstat (limited to 'models')
-rw-r--r--models/repo.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index 2e52cd1e..0a2f67a1 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -186,6 +186,7 @@ type Repository struct {
ExternalWikiURL string
EnableIssues bool `xorm:"NOT NULL DEFAULT true"`
EnableExternalTracker bool
+ ExternalTrackerURL string
ExternalTrackerFormat string
ExternalTrackerStyle string
ExternalMetas map[string]string `xorm:"-"`