Skip to content

Commit dec8792

Browse files
fix: fix default instance url
1 parent a9b4054 commit dec8792

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"gitguardian.apiUrl": {
2929
"type": "string",
30-
"default": "https://api.gitguardian.com",
30+
"default": "https://dashboard.gitguardian.com",
3131
"markdownDescription": "You can override the value here for On Premise installations"
3232
},
3333
"gitguardian.apiKey": {

src/lib/ggshield-configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { getBinaryAbsolutePath } from "./ggshield-resolver-utils";
2-
import { ConfigurationTarget, ExtensionContext, workspace } from "vscode";
2+
import { ExtensionContext, workspace } from "vscode";
33
import * as os from "os";
44

5-
const apiUrlDefault = "https://api.gitguardian.com/";
5+
const apiUrlDefault = "https://dashboard.gitguardian.com/";
66

77
export class GGShieldConfiguration {
88
ggshieldPath: string;

0 commit comments

Comments
 (0)