diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-07 16:30:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 16:30:48 +0100 |
commit | ee963f67c1eb023b6ed70a2c0f14c6d3c927b8ac (patch) | |
tree | 3eae6328bce456f64c64c9b1f84edc42263f7de1 /models | |
parent | 9c434ccc5060b1fb1d30e268c9c5a71b00230cd7 (diff) | |
parent | 30be1f48266a0c8bfb080b6df1a4ebee906949b3 (diff) | |
download | gitea-ee963f67c1eb023b6ed70a2c0f14c6d3c927b8ac.tar.gz gitea-ee963f67c1eb023b6ed70a2c0f14c6d3c927b8ac.zip |
Merge pull request #103 from strk/GOGS_drop
Replace GOGS with GITEA in variable names
Diffstat (limited to 'models')
-rw-r--r-- | models/pull.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/pull.go b/models/pull.go index ae508103d0..adb5ab74f0 100644 --- a/models/pull.go +++ b/models/pull.go @@ -26,8 +26,8 @@ var PullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLe type PullRequestType int const ( - PULL_REQUEST_GOGS PullRequestType = iota - PLLL_ERQUEST_GIT + PULL_REQUEST_GITEA PullRequestType = iota + PULL_REQUEST_GIT ) type PullRequestStatus int |