Skip to content

Commit 19a2d63

Browse files
committed
feat: ory.com
1 parent e4dd7c4 commit 19a2d63

14 files changed

Lines changed: 28 additions & 30 deletions

cmd/cloudx/client/sdks.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ var rateLimitHeader = os.Getenv(RateLimitHeaderKey)
2828

2929
func CloudConsoleURL(prefix string) *url.URL {
3030
// we load the URL from the env here instead of init() because the tests might want to change this
31-
consoleURL, err := url.ParseRequestURI(cmp.Or(os.Getenv(ConsoleURLKey), "https://console.ory.sh"))
31+
consoleURL, err := url.ParseRequestURI(cmp.Or(os.Getenv(ConsoleURLKey), "https://console.ory.com"))
3232
if err != nil {
3333
fmt.Printf("error parsing console url: %s\n", err)
34-
consoleURL = &url.URL{Scheme: "https", Host: "console.ory.sh"}
34+
consoleURL = &url.URL{Scheme: "https", Host: "console.ory.com"}
3535
}
3636
if prefix != "" {
3737
consoleURL.Host = prefix + "." + consoleURL.Host

cmd/cloudx/project/patch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ specified in the patch will be overwritten. To replace the config use the ` + "`
3535
3636
The format of the patch is a JSON-Patch document. For more details please check:
3737
38-
https://www.ory.sh/docs/reference/api#operation/patchProject
38+
https://www.ory.com/docs/reference/api#operation/patchProject
3939
https://jsonpatch.com`,
4040
RunE: runPatch(
4141
func(s []string) []string {

cmd/cloudx/project/patch_identity_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ when compared to the ` + "`patch project`" + ` command:
4646
4747
The format of the patch is a JSON-Patch document. For more details please check:
4848
49-
https://www.ory.sh/docs/reference/api#operation/patchProject
49+
https://www.ory.com/docs/reference/api#operation/patchProject
5050
https://jsonpatch.com`,
5151
RunE: runPatch(
5252
prefixIdentityConfig,

cmd/cloudx/project/patch_oauth2_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ when compared to the ` + "`patch project`" + ` command:
5757
5858
The format of the patch is a JSON-Patch document. For more details please check:
5959
60-
https://www.ory.sh/docs/reference/api#operation/patchProject
60+
https://www.ory.com/docs/reference/api#operation/patchProject
6161
https://jsonpatch.com`,
6262
RunE: runPatch(
6363
prefixOAuth2Config,

cmd/cloudx/project/patch_permission_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ when compared to the ` + "`patch project`" + ` command:
5252
5353
The format of the patch is a JSON-Patch document. For more details please check:
5454
55-
https://www.ory.sh/docs/reference/api#operation/patchProject
55+
https://www.ory.com/docs/reference/api#operation/patchProject
5656
https://jsonpatch.com`,
5757
RunE: runPatch(
5858
prefixPermissionConfig,

cmd/cloudx/project/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If the ` + "`--name`" + ` flag is not set, the project's name will not be change
6060
6161
The full configuration payload can be found at
6262
63-
https://www.ory.sh/docs/reference/api#operation/updateProject
63+
https://www.ory.com/docs/reference/api#operation/updateProject
6464
6565
As an example an input could look like:
6666

cmd/cloudx/project/update_identity_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ self-hosted Ory Kratos to Ory Network.
5151
5252
The full configuration payload can be found at:
5353
54-
https://www.ory.sh/docs/reference/api#operation/updateProject.
54+
https://www.ory.com/docs/reference/api#operation/updateProject.
5555
5656
This command expects the contents of the ` + "`/services/identity/config`" + ` key, so for example:
5757

cmd/cloudx/project/update_oauth2_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ from self-hosted Ory Hydra to Ory Network.
5353
5454
The full configuration payload can be found at:
5555
56-
https://www.ory.sh/docs/reference/api#operation/updateProject.
56+
https://www.ory.com/docs/reference/api#operation/updateProject.
5757
5858
This command expects the contents of the ` + "`/services/oauth2/config`" + ` key, so for example:
5959

cmd/cloudx/project/update_permission_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ self-hosted Ory Keto to Ory Network.
5252
5353
The full configuration payload can be found at:
5454
55-
https://www.ory.sh/docs/reference/api#operation/updateProject.
55+
https://www.ory.com/docs/reference/api#operation/updateProject.
5656
5757
This command expects the contents of the ` + "`/services/permission/config`" + ` key, so for example:
5858

cmd/dev/newsletter/.snapshots/TestRenderMarkdownLong.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)