diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-07 17:08:21 +0100 |
---|---|---|
committer | Sandro Santilli <strk@kbt.io> | 2016-11-07 17:08:21 +0100 |
commit | 0b62aeb495c9c1daf816a754a0e4abbf8c62c2c0 (patch) | |
tree | 7ec5e31249bca75a1a288c7b6ac2e4d2a10a1f79 /models | |
parent | 80eea77953ab5f1f12e1a01f1930b72c360a5c76 (diff) | |
download | gitea-0b62aeb495c9c1daf816a754a0e4abbf8c62c2c0.tar.gz gitea-0b62aeb495c9c1daf816a754a0e4abbf8c62c2c0.zip |
More MixedCase consts
Diffstat (limited to 'models')
-rw-r--r-- | models/webhook.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/webhook.go b/models/webhook.go index bffddb359f..4b5501715a 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -76,7 +76,7 @@ type HookEvent struct { type HookStatus int const ( - HOOK_STATUS_NONE = iota + HookStatusNone = iota HookStatusSucceed HookStatusFail ) |