diff options
author | Rémy Boulanouar <rboulanouar@gmail.com> | 2017-02-01 02:53:48 +0100 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2017-01-31 20:53:48 -0500 |
commit | be3a13a0d6e5ba00cf364db4fada77f9f77e3521 (patch) | |
tree | 742780bb034e2175c94983e802ad9f937da88704 /models | |
parent | d293aa9ced0108b3342053c34ed9147de1c8f2af (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.go | 1 |
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:"-"` |