`;
diff --git a/packages/emails/emails.go b/packages/emails/emails.go
index f2e23ff3a..378b45c11 100644
--- a/packages/emails/emails.go
+++ b/packages/emails/emails.go
@@ -68,7 +68,7 @@ func DefaultPresenterConfig(baseURL string) PresenterConfig {
BaseURL: baseURL, // can change to custom domain when needed
PoweredByLogoPath: brand.DefaultPoweredByLogoPath,
SenderCompanyName: "Probo",
- SenderCompanyWebsiteURL: "https://www.getprobo.com",
+ SenderCompanyWebsiteURL: "https://www.probo.com",
SenderCompanyLogoPath: brand.DefaultSenderCompanyLogoPath,
SenderCompanyHeadquarterAddress: "Probo Inc, 490 Post St, STE 640, San Francisco, CA, 94102, US",
}
diff --git a/packages/emails/src/components/EmailLayout.tsx b/packages/emails/src/components/EmailLayout.tsx
index 77b03f616..79aa45029 100644
--- a/packages/emails/src/components/EmailLayout.tsx
+++ b/packages/emails/src/components/EmailLayout.tsx
@@ -61,7 +61,7 @@ export const EmailLayout = ({
Powered By
-
+
diff --git a/packages/n8n-node/credentials/ProboApi.credentials.ts b/packages/n8n-node/credentials/ProboApi.credentials.ts
index 40848aef9..f0d7a4c40 100644
--- a/packages/n8n-node/credentials/ProboApi.credentials.ts
+++ b/packages/n8n-node/credentials/ProboApi.credentials.ts
@@ -27,7 +27,7 @@ export class ProboApi implements ICredentialType {
icon: Icon = { light: 'file:../icons/probo-light.svg', dark: 'file:../icons/probo.svg' };
- documentationUrl = 'https://www.getprobo.com/docs';
+ documentationUrl = 'https://www.probo.com/docs';
properties: INodeProperties[] = [
{
diff --git a/packages/n8n-node/nodes/Probo/Probo.node.json b/packages/n8n-node/nodes/Probo/Probo.node.json
index 5aba2f279..3a15acec8 100644
--- a/packages/n8n-node/nodes/Probo/Probo.node.json
+++ b/packages/n8n-node/nodes/Probo/Probo.node.json
@@ -6,12 +6,12 @@
"resources": {
"credentialDocumentation": [
{
- "url": "https://www.getprobo.com/docs"
+ "url": "https://www.probo.com/docs"
}
],
"primaryDocumentation": [
{
- "url": "https://www.getprobo.com/docs"
+ "url": "https://www.probo.com/docs"
}
],
"generic": []
diff --git a/packages/n8n-node/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.ts b/packages/n8n-node/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.ts
index 83b9a15ca..15bee1c41 100644
--- a/packages/n8n-node/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.ts
+++ b/packages/n8n-node/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.ts
@@ -1,4 +1,4 @@
-// Copyright (c) 2025-2026 Probo Inc .
+// Copyright (c) 2025-2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/accessreview/drivers/better_stack.go b/pkg/accessreview/drivers/better_stack.go
index 30f7da891..6e998b101 100644
--- a/pkg/accessreview/drivers/better_stack.go
+++ b/pkg/accessreview/drivers/better_stack.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/accessreview/drivers/better_stack_test.go b/pkg/accessreview/drivers/better_stack_test.go
index 482379e63..a5d23f02f 100644
--- a/pkg/accessreview/drivers/better_stack_test.go
+++ b/pkg/accessreview/drivers/better_stack_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/agent/tools/browser/browser.go b/pkg/agent/tools/browser/browser.go
index e236e75fb..f955c493d 100644
--- a/pkg/agent/tools/browser/browser.go
+++ b/pkg/agent/tools/browser/browser.go
@@ -53,8 +53,8 @@ func NewBrowser(ctx context.Context, addr string) *Browser {
}
// SetAllowedDomain restricts navigation to URLs under the given domain and
-// its subdomains. For example, setting "getprobo.com" allows navigation to
-// getprobo.com, www.getprobo.com, and compliance.getprobo.com.
+// its subdomains. For example, setting "probo.com" allows navigation to
+// probo.com, www.probo.com, and docs.probo.com.
// This replaces any previously set domains.
func (b *Browser) SetAllowedDomain(domain string) {
domain = strings.ToLower(strings.TrimSpace(domain))
diff --git a/pkg/bootstrap/builder.go b/pkg/bootstrap/builder.go
index 2eac4449d..65f93c3a0 100644
--- a/pkg/bootstrap/builder.go
+++ b/pkg/bootstrap/builder.go
@@ -254,7 +254,7 @@ func (b *Builder) Build() (*probodconfig.FullConfig, error) {
CAAIssuerDomain: b.getEnvOrDefault("CUSTOM_DOMAINS_CAA_ISSUER_DOMAIN", "letsencrypt.org"),
ACME: probodconfig.ACMEConfig{
Directory: b.getEnvOrDefault("ACME_DIRECTORY", "https://acme-v02.api.letsencrypt.org/directory"),
- Email: b.getEnvOrDefault("ACME_EMAIL", "admin@getprobo.com"),
+ Email: b.getEnvOrDefault("ACME_EMAIL", "admin@probo.com"),
KeyType: b.getEnvOrDefault("ACME_KEY_TYPE", "EC256"),
RootCA: b.getEnv("ACME_ROOT_CA"),
AccountKey: b.getEnv("ACME_ACCOUNT_KEY"),
diff --git a/pkg/bootstrap/builder_test.go b/pkg/bootstrap/builder_test.go
index b8889ee6b..9808952b3 100644
--- a/pkg/bootstrap/builder_test.go
+++ b/pkg/bootstrap/builder_test.go
@@ -255,7 +255,7 @@ func TestBuilder_Build_Defaults(t *testing.T) {
assert.Equal(t, "custom.getprobo.com", cfg.Probod.CustomDomains.CnameTarget)
assert.Equal(t, "8.8.8.8:53", cfg.Probod.CustomDomains.ResolverAddr)
assert.Equal(t, "https://acme-v02.api.letsencrypt.org/directory", cfg.Probod.CustomDomains.ACME.Directory)
- assert.Equal(t, "admin@getprobo.com", cfg.Probod.CustomDomains.ACME.Email)
+ assert.Equal(t, "admin@probo.com", cfg.Probod.CustomDomains.ACME.Email)
assert.Equal(t, "EC256", cfg.Probod.CustomDomains.ACME.KeyType)
// SCIM bridge config
diff --git a/pkg/cmd/cookie-banner/regenerate-policy/regenerate_policy.go b/pkg/cmd/cookie-banner/regenerate-policy/regenerate_policy.go
index a3b2d7e70..835e9d7bd 100644
--- a/pkg/cmd/cookie-banner/regenerate-policy/regenerate_policy.go
+++ b/pkg/cmd/cookie-banner/regenerate-policy/regenerate_policy.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/connector/provider/better_stack.go b/pkg/connector/provider/better_stack.go
index c246cd79e..d2889f686 100644
--- a/pkg/connector/provider/better_stack.go
+++ b/pkg/connector/provider/better_stack.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/cookiebanner/common_pattern_enricher.go b/pkg/cookiebanner/common_pattern_enricher.go
index cae826a04..5b4bf34ce 100644
--- a/pkg/cookiebanner/common_pattern_enricher.go
+++ b/pkg/cookiebanner/common_pattern_enricher.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/cookiebanner/reset_trackers.go b/pkg/cookiebanner/reset_trackers.go
index 80d08ea9c..01097799c 100644
--- a/pkg/cookiebanner/reset_trackers.go
+++ b/pkg/cookiebanner/reset_trackers.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/cookiebanner/reset_trackers_test.go b/pkg/cookiebanner/reset_trackers_test.go
index 108e13f7a..d2fc0b52d 100644
--- a/pkg/cookiebanner/reset_trackers_test.go
+++ b/pkg/cookiebanner/reset_trackers_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/coredata/common_third_party_order_field.go b/pkg/coredata/common_third_party_order_field.go
index 70cbd2907..5168f33c8 100644
--- a/pkg/coredata/common_third_party_order_field.go
+++ b/pkg/coredata/common_third_party_order_field.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/coredata/common_tracker_pattern_filter.go b/pkg/coredata/common_tracker_pattern_filter.go
index c317f3180..2f8632c03 100644
--- a/pkg/coredata/common_tracker_pattern_filter.go
+++ b/pkg/coredata/common_tracker_pattern_filter.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/coredata/common_tracker_pattern_order_field.go b/pkg/coredata/common_tracker_pattern_order_field.go
index a52eb72fa..7dec07a07 100644
--- a/pkg/coredata/common_tracker_pattern_order_field.go
+++ b/pkg/coredata/common_tracker_pattern_order_field.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/coredata/migrations/20250528T001641Z.sql b/pkg/coredata/migrations/20250528T001641Z.sql
index 9e5116fb1..bd7b3e966 100644
--- a/pkg/coredata/migrations/20250528T001641Z.sql
+++ b/pkg/coredata/migrations/20250528T001641Z.sql
@@ -56,7 +56,7 @@ UPDATE vendors SET
WHEN 'Ramp' THEN 'https://trust.ramp.com/'
WHEN 'ClickHouse' THEN 'https://clickhouse.com/legal/agreements/subprocessors'
WHEN 'Tailscale' THEN 'https://tailscale.com/dpa-subprocessors'
- WHEN 'Probo' THEN 'https://www.getprobo.com/subprocessors'
+ WHEN 'Probo' THEN 'https://www.probo.com/subprocessors'
WHEN 'folk' THEN 'https://www.folk.app/privacy-policy#3-list-of-sub-processors'
WHEN 'Claap' THEN 'https://www.claap.io/legal/privacy-policy#sub-processors'
WHEN 'Pitch' THEN 'https://pitch.com/dpa#annex-7-2'
diff --git a/pkg/coredata/migrations/20260608T417263Z.sql b/pkg/coredata/migrations/20260608T417263Z.sql
index 1bf9dd5b4..d6c957928 100644
--- a/pkg/coredata/migrations/20260608T417263Z.sql
+++ b/pkg/coredata/migrations/20260608T417263Z.sql
@@ -1,4 +1,4 @@
--- Copyright (c) 2026 Probo Inc .
+-- Copyright (c) 2026 Probo Inc .
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/esign/certificate.html.tmpl b/pkg/esign/certificate.html.tmpl
index cf3874317..d4cc5c875 100644
--- a/pkg/esign/certificate.html.tmpl
+++ b/pkg/esign/certificate.html.tmpl
@@ -451,14 +451,14 @@
You may contact us to let us know of your changes as to how we may contact you
electronically, and to withdraw your prior consent to receive notices and
disclosures electronically. To reach us, please send an email to
- legal@getprobo.com.
+ legal@probo.com.
To advise us of your new email address
To let us know of a change in your email address where we should send notices and
disclosures electronically to you, you must send an email message to us at
- legal@getprobo.com and in the body of such request you must state your previous
+ legal@probo.com and in the body of such request you must state your previous
email address and your new email address. We do not require any other information
from you to change your email address.
@@ -474,7 +474,7 @@
subsequent page, indicate you wish to withdraw your consent; or
- send us an email to legal@getprobo.com and in the body of such request you
+ send us an email to legal@probo.com and in the body of such request you
must state your email, full name, mailing address, and telephone number. We do
not need any other information from you to withdraw consent. The consequences of
your withdrawing consent for online documents will be that transactions may take
diff --git a/pkg/iam/organization_service.go b/pkg/iam/organization_service.go
index e13732762..146c4832a 100644
--- a/pkg/iam/organization_service.go
+++ b/pkg/iam/organization_service.go
@@ -137,10 +137,10 @@ var (
Description: "Probo is an open-source compliance platform that helps startups achieve SOC 2 and ISO 27001 certifications quickly and affordably, with expert guidance and no thirdParty lock-in.",
LegalName: "Probo Inc.",
HeadquarterAddress: "490 Post St, Suite 640,San Francisco, CA 94102, United States",
- WebsiteURL: "https://www.getprobo.com/",
- PrivacyPolicyURL: "https://www.getprobo.com/privacy",
- TermsOfServiceURL: "https://www.getprobo.com/terms",
- SubprocessorsListURL: "https://www.getprobo.com/subprocessors",
+ WebsiteURL: "https://www.probo.com/",
+ PrivacyPolicyURL: "https://www.probo.com/privacy",
+ TermsOfServiceURL: "https://www.probo.com/terms",
+ SubprocessorsListURL: "https://www.probo.com/subprocessors",
}
)
diff --git a/pkg/proboctl/cmdutil/paginate.go b/pkg/proboctl/cmdutil/paginate.go
index 676e8e401..fa66365d6 100644
--- a/pkg/proboctl/cmdutil/paginate.go
+++ b/pkg/proboctl/cmdutil/paginate.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commonthirdparty/commonthirdparty.go b/pkg/proboctl/commonthirdparty/commonthirdparty.go
index b3402b66d..8edbb47c9 100644
--- a/pkg/proboctl/commonthirdparty/commonthirdparty.go
+++ b/pkg/proboctl/commonthirdparty/commonthirdparty.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commonthirdparty/domains.go b/pkg/proboctl/commonthirdparty/domains.go
index 77ac978ef..c3bdc5d62 100644
--- a/pkg/proboctl/commonthirdparty/domains.go
+++ b/pkg/proboctl/commonthirdparty/domains.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commonthirdparty/list.go b/pkg/proboctl/commonthirdparty/list.go
index 36804ba3c..75a38cb2d 100644
--- a/pkg/proboctl/commonthirdparty/list.go
+++ b/pkg/proboctl/commonthirdparty/list.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commonthirdparty/show.go b/pkg/proboctl/commonthirdparty/show.go
index 20feee19d..5df5dfb6e 100644
--- a/pkg/proboctl/commonthirdparty/show.go
+++ b/pkg/proboctl/commonthirdparty/show.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commontrackerpattern/commontrackerpattern.go b/pkg/proboctl/commontrackerpattern/commontrackerpattern.go
index 97fcb7d17..c90357045 100644
--- a/pkg/proboctl/commontrackerpattern/commontrackerpattern.go
+++ b/pkg/proboctl/commontrackerpattern/commontrackerpattern.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commontrackerpattern/list.go b/pkg/proboctl/commontrackerpattern/list.go
index 1639e8be3..ccc8edf62 100644
--- a/pkg/proboctl/commontrackerpattern/list.go
+++ b/pkg/proboctl/commontrackerpattern/list.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commontrackerpattern/reenrich.go b/pkg/proboctl/commontrackerpattern/reenrich.go
index 78b49ecd1..3c1dff521 100644
--- a/pkg/proboctl/commontrackerpattern/reenrich.go
+++ b/pkg/proboctl/commontrackerpattern/reenrich.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commontrackerpattern/show.go b/pkg/proboctl/commontrackerpattern/show.go
index 91f135910..456216d71 100644
--- a/pkg/proboctl/commontrackerpattern/show.go
+++ b/pkg/proboctl/commontrackerpattern/show.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/commontrackerpattern/stats.go b/pkg/proboctl/commontrackerpattern/stats.go
index 7054f3829..5945cbbb6 100644
--- a/pkg/proboctl/commontrackerpattern/stats.go
+++ b/pkg/proboctl/commontrackerpattern/stats.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/cookiebanner/cookiebanner.go b/pkg/proboctl/cookiebanner/cookiebanner.go
index 4ff256733..2909d539e 100644
--- a/pkg/proboctl/cookiebanner/cookiebanner.go
+++ b/pkg/proboctl/cookiebanner/cookiebanner.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/cookiebanner/reset_trackers.go b/pkg/proboctl/cookiebanner/reset_trackers.go
index 191247471..f3d5a093f 100644
--- a/pkg/proboctl/cookiebanner/reset_trackers.go
+++ b/pkg/proboctl/cookiebanner/reset_trackers.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2026 Probo Inc .
+// Copyright (c) 2026 Probo Inc .
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
diff --git a/pkg/proboctl/seed/common-third-parties/data/LICENSE.md b/pkg/proboctl/seed/common-third-parties/data/LICENSE.md
index 08da4f6f4..4e6d74889 100644
--- a/pkg/proboctl/seed/common-third-parties/data/LICENSE.md
+++ b/pkg/proboctl/seed/common-third-parties/data/LICENSE.md
@@ -15,7 +15,7 @@ When using this data, you must:
When using this data, please include the following attribution:
```
-Data sourced from Probo Inc. (https://www.getprobo.com) under CC BY-SA 4.0 license
+Data sourced from Probo Inc. (https://www.probo.com) under CC BY-SA 4.0 license
```
## More Information
diff --git a/pkg/probod/probod.go b/pkg/probod/probod.go
index 3ab0f2305..401fda026 100644
--- a/pkg/probod/probod.go
+++ b/pkg/probod/probod.go
@@ -159,7 +159,7 @@ func New() *Implm {
ResolverAddr: "8.8.8.8:53",
ACME: ACMEConfig{
Directory: "https://acme-v02.api.letsencrypt.org/directory",
- Email: "admin@getprobo.com",
+ Email: "admin@probo.com",
KeyType: "EC256",
},
},
diff --git a/pkg/prosemirror/node_test.go b/pkg/prosemirror/node_test.go
index 81d68bc7c..8791a227d 100644
--- a/pkg/prosemirror/node_test.go
+++ b/pkg/prosemirror/node_test.go
@@ -108,7 +108,7 @@ func TestUnmarshalDocument(t *testing.T) {
linkAttrs, err := linkNode.Marks[0].LinkAttrs()
require.NoError(t, err)
- assert.Equal(t, "https://getprobo.com", linkAttrs.Href)
+ assert.Equal(t, "https://probo.com", linkAttrs.Href)
require.NotNil(t, linkAttrs.Target)
assert.Equal(t, "_blank", *linkAttrs.Target)
require.NotNil(t, linkAttrs.Rel)
diff --git a/pkg/prosemirror/testdata/document.html b/pkg/prosemirror/testdata/document.html
index f14dd5e10..5fd3c9274 100644
--- a/pkg/prosemirror/testdata/document.html
+++ b/pkg/prosemirror/testdata/document.html
@@ -1 +1 @@
-
Heading 1
This is a paragraph with some bold and some italic and some underlined text. It contains a line break, and some strikethrough. There's some inline code. And a link
This is a paragraph with some bold and some italic and some underlined text. It contains a line break, and some strikethrough. There's some inline code. And a link
\ No newline at end of file
diff --git a/pkg/prosemirror/testdata/document.json b/pkg/prosemirror/testdata/document.json
index c00338f1f..4e4215113 100644
--- a/pkg/prosemirror/testdata/document.json
+++ b/pkg/prosemirror/testdata/document.json
@@ -101,7 +101,7 @@
{
"type": "link",
"attrs": {
- "href": "https://getprobo.com",
+ "href": "https://probo.com",
"target": "_blank",
"rel": "noopener noreferrer nofollow",
"class": null,
diff --git a/pkg/prosemirror/testdata/document.md b/pkg/prosemirror/testdata/document.md
index 78ff803c0..3da1c46a7 100644
--- a/pkg/prosemirror/testdata/document.md
+++ b/pkg/prosemirror/testdata/document.md
@@ -2,7 +2,7 @@
This is a paragraph **with some bold** and *some italic* and some underlined text.\
It contains a line break, and some ~~strikethrough.~~\
-There's some `inline code`. And a [link](https://getprobo.com)
+There's some `inline code`. And a [link](https://probo.com)
## Heading 2
diff --git a/pkg/server/api/console/v1/connector_oauth_client_metadata.go b/pkg/server/api/console/v1/connector_oauth_client_metadata.go
index 7db8db3df..7867e82bf 100644
--- a/pkg/server/api/console/v1/connector_oauth_client_metadata.go
+++ b/pkg/server/api/console/v1/connector_oauth_client_metadata.go
@@ -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 {
diff --git a/pkg/server/api/console/v1/connector_oauth_client_metadata_test.go b/pkg/server/api/console/v1/connector_oauth_client_metadata_test.go
index f59fd3b17..404dc4838 100644
--- a/pkg/server/api/console/v1/connector_oauth_client_metadata_test.go
+++ b/pkg/server/api/console/v1/connector_oauth_client_metadata_test.go
@@ -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")