2021-08-05 19:11:08 -06:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-08-05 19:11:08 -06:00
|
|
|
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
// Name returns the provider name of this source
|
|
|
|
func (source *Source) Name() string {
|
|
|
|
return source.Provider
|
|
|
|
}
|
|
|
|
|
|
|
|
// DisplayName returns the display name of this source
|
|
|
|
func (source *Source) DisplayName() string {
|
|
|
|
provider, has := gothProviders[source.Provider]
|
|
|
|
if !has {
|
|
|
|
return source.Provider
|
|
|
|
}
|
|
|
|
return provider.DisplayName()
|
|
|
|
}
|