forked from mirror/gitea
gofmt (#1662)
This commit is contained in:
parent
1773e88643
commit
a5f28a4544
@ -9,8 +9,8 @@ import "fmt"
|
|||||||
// ErrOpenIDConnectInitialize represents a "OpenIDConnectInitialize" kind of error.
|
// ErrOpenIDConnectInitialize represents a "OpenIDConnectInitialize" kind of error.
|
||||||
type ErrOpenIDConnectInitialize struct {
|
type ErrOpenIDConnectInitialize struct {
|
||||||
OpenIDConnectAutoDiscoveryURL string
|
OpenIDConnectAutoDiscoveryURL string
|
||||||
ProviderName string
|
ProviderName string
|
||||||
Cause error
|
Cause error
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsErrOpenIDConnectInitialize checks if an error is a ExternalLoginUserAlreadyExist.
|
// IsErrOpenIDConnectInitialize checks if an error is a ExternalLoginUserAlreadyExist.
|
||||||
|
@ -685,4 +685,4 @@ func UserSignIn(username, password string) (*User, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return nil, ErrUserNotExist{user.ID, user.Name, 0}
|
return nil, ErrUserNotExist{user.ID, user.Name, 0}
|
||||||
}
|
}
|
||||||
|
@ -6,15 +6,16 @@ package models
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"code.gitea.io/gitea/modules/auth/oauth2"
|
"code.gitea.io/gitea/modules/auth/oauth2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// OAuth2Provider describes the display values of a single OAuth2 provider
|
// OAuth2Provider describes the display values of a single OAuth2 provider
|
||||||
type OAuth2Provider struct {
|
type OAuth2Provider struct {
|
||||||
Name string
|
Name string
|
||||||
DisplayName string
|
DisplayName string
|
||||||
Image string
|
Image string
|
||||||
CustomURLMapping *oauth2.CustomURLMapping
|
CustomURLMapping *oauth2.CustomURLMapping
|
||||||
}
|
}
|
||||||
|
|
||||||
// OAuth2Providers contains the map of registered OAuth2 providers in Gitea (based on goth)
|
// OAuth2Providers contains the map of registered OAuth2 providers in Gitea (based on goth)
|
||||||
@ -47,7 +48,7 @@ var OAuth2Providers = map[string]OAuth2Provider{
|
|||||||
// OAuth2DefaultCustomURLMappings contains the map of default URL's for OAuth2 providers that are allowed to have custom urls
|
// OAuth2DefaultCustomURLMappings contains the map of default URL's for OAuth2 providers that are allowed to have custom urls
|
||||||
// key is used to map the OAuth2Provider
|
// key is used to map the OAuth2Provider
|
||||||
// value is the mapping as defined for the OAuth2Provider
|
// value is the mapping as defined for the OAuth2Provider
|
||||||
var OAuth2DefaultCustomURLMappings = map[string]*oauth2.CustomURLMapping {
|
var OAuth2DefaultCustomURLMappings = map[string]*oauth2.CustomURLMapping{
|
||||||
"github": OAuth2Providers["github"].CustomURLMapping,
|
"github": OAuth2Providers["github"].CustomURLMapping,
|
||||||
"gitlab": OAuth2Providers["gitlab"].CustomURLMapping,
|
"gitlab": OAuth2Providers["gitlab"].CustomURLMapping,
|
||||||
}
|
}
|
||||||
@ -119,4 +120,3 @@ func wrapOpenIDConnectInitializeError(err error, providerName string, oAuth2Conf
|
|||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,6 +23,6 @@ func Version(ctx *context.APIContext) {
|
|||||||
//
|
//
|
||||||
// Responses:
|
// Responses:
|
||||||
// 200: ServerVersion
|
// 200: ServerVersion
|
||||||
|
|
||||||
ctx.JSON(200, &gitea.ServerVersion{Version: setting.AppVer})
|
ctx.JSON(200, &gitea.ServerVersion{Version: setting.AppVer})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user