summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorRémy Boulanouar <rboulanouar@gmail.com>2016-11-04 09:06:54 +0100
committerRémy Boulanouar <rboulanouar@gmail.com>2016-11-04 09:06:54 +0100
commit8dc49dc1149fccda2b4da63fa63d23f2b6260466 (patch)
tree826472b0f25062dd952359e395e48c960ccdf2df /models/repo.go
parent4a5faecd8f90b4849ab671051e832b3872818b0a (diff)
downloadgitea-8dc49dc1149fccda2b4da63fa63d23f2b6260466.tar.gz
gitea-8dc49dc1149fccda2b4da63fa63d23f2b6260466.zip
Implementation of the feature to redirect to an external issue tracker
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index 7c4e475dda..990670940f 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:"-"`