seperate ssh constants from schema constants

The contants were placed in the same section as the scheme ones, which
may lead to confusion.
forgejo
Gibheer 8 years ago
parent 2f27ee2232
commit e3570ae45d

@ -27,14 +27,17 @@ import (
"github.com/gogits/gogs/modules/user" "github.com/gogits/gogs/modules/user"
) )
const (
SSH_PUBLICKEY_CHECK_NATIVE = "native"
SSH_PUBLICKEY_CHECK_KEYGEN = "ssh-keygen"
)
type Scheme string type Scheme string
const ( const (
HTTP Scheme = "http" HTTP Scheme = "http"
HTTPS Scheme = "https" HTTPS Scheme = "https"
FCGI Scheme = "fcgi" FCGI Scheme = "fcgi"
SSH_PUBLICKEY_CHECK_NATIVE = "native"
SSH_PUBLICKEY_CHECK_KEYGEN = "ssh-keygen"
) )
type LandingPage string type LandingPage string

Loading…
Cancel
Save