Skip to content

Commit

Permalink
Merge pull request #51 from GitGuardian/jgriffe/fix-default-instance
Browse files Browse the repository at this point in the history
fix: fix default instance url
  • Loading branch information
gg-jonathangriffe authored Nov 7, 2024
2 parents a9b4054 + dec8792 commit cfb1159
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"gitguardian.apiUrl": {
"type": "string",
"default": "https://api.gitguardian.com",
"default": "https://dashboard.gitguardian.com",
"markdownDescription": "You can override the value here for On Premise installations"
},
"gitguardian.apiKey": {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/ggshield-configuration.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getBinaryAbsolutePath } from "./ggshield-resolver-utils";
import { ConfigurationTarget, ExtensionContext, workspace } from "vscode";
import { ExtensionContext, workspace } from "vscode";
import * as os from "os";

const apiUrlDefault = "https://api.gitguardian.com/";
const apiUrlDefault = "https://dashboard.gitguardian.com/";

export class GGShieldConfiguration {
ggshieldPath: string;
Expand Down

0 comments on commit cfb1159

Please sign in to comment.