2021-08-06 06:41:08 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-08-06 06:41:08 +05:30
|
|
|
|
|
|
|
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()
|
|
|
|
}
|