mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
12 lines
288 B
Go
12 lines
288 B
Go
package schema
|
|
|
|
var DefaultBitbucketCloudURL = "https://bitbucket.org"
|
|
|
|
// GetURL retrieves the configured GitHub URL or a default if one is not set.
|
|
func (p *BitbucketCloudAuthProvider) GetURL() string {
|
|
if p != nil && p.Url != "" {
|
|
return p.Url
|
|
}
|
|
return DefaultBitbucketCloudURL
|
|
}
|