Use probo.com for bare and marketing domain references
Replace the bare `getprobo.com` domain and the `www.getprobo.com` marketing host with `probo.com` / `www.probo.com` across the codebase. Functional subdomains (app, console, notification, custom, test, cookie-banner, compliance) keep their existing `getprobo.com` hosts, and changelog entries are left untouched. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
@@ -33,8 +33,8 @@ import (
|
||||
// These describe the Probo product itself (not the per-tenant deployment), so
|
||||
// they are the canonical brand homepage and logo rather than the baseURL.
|
||||
const (
|
||||
proboBrandURI = "https://www.getprobo.com"
|
||||
proboLogoURI = "https://www.getprobo.com/probo-logo-only.svg"
|
||||
proboBrandURI = "https://www.probo.com"
|
||||
proboLogoURI = "https://www.probo.com/probo-logo-only.svg"
|
||||
)
|
||||
|
||||
type oauthClientMetadata struct {
|
||||
|
||||
@@ -67,8 +67,8 @@ func TestHandleConnectorOAuthClientMetadata(t *testing.T) {
|
||||
// ...while the brand fields shown on the consent screen are the canonical
|
||||
// Probo product identity, NOT the per-tenant deployment URL.
|
||||
assert.Equal(t, "Probo", doc.ClientName)
|
||||
assert.Equal(t, "https://www.getprobo.com", doc.ClientURI)
|
||||
assert.Equal(t, "https://www.getprobo.com/probo-logo-only.svg", doc.LogoURI)
|
||||
assert.Equal(t, "https://www.probo.com", doc.ClientURI)
|
||||
assert.Equal(t, "https://www.probo.com/probo-logo-only.svg", doc.LogoURI)
|
||||
assert.Equal(t, "none", doc.TokenEndpointAuthMethod, "public client must advertise token_endpoint_auth_method none")
|
||||
assert.Contains(t, doc.GrantTypes, "authorization_code")
|
||||
assert.Contains(t, doc.GrantTypes, "refresh_token")
|
||||
|
||||
Reference in New Issue
Block a user