Skip to content

Commit

Permalink
Updates gk urls
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jul 8, 2022
1 parent c45dc65 commit 4c33219
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/plus/subscription/serverConnection.ts
Expand Up @@ -55,14 +55,14 @@ export class ServerConnection implements Disposable {
@memoize()
private get baseAccountUri(): Uri {
if (this.container.env === 'staging') {
return Uri.parse('https://stagingaccount.gitkraken.com');
return Uri.parse('https://stagingapp.gitkraken.com');
}

if (this.container.env === 'dev') {
return Uri.parse('https://devaccount.gitkraken.com');
return Uri.parse('https://devapp.gitkraken.com');
}

return Uri.parse('https://account.gitkraken.com');
return Uri.parse('https://app.gitkraken.com');
}

abort(): Promise<void> {
Expand Down
6 changes: 3 additions & 3 deletions src/plus/subscription/subscriptionService.ts
Expand Up @@ -135,14 +135,14 @@ export class SubscriptionService implements Disposable {
private get baseAccountUri(): Uri {
const { env } = this.container;
if (env === 'staging') {
return Uri.parse('https://stagingaccount.gitkraken.com');
return Uri.parse('https://stagingapp.gitkraken.com');
}

if (env === 'dev') {
return Uri.parse('https://devaccount.gitkraken.com');
return Uri.parse('https://devapp.gitkraken.com');
}

return Uri.parse('https://account.gitkraken.com');
return Uri.parse('https://app.gitkraken.com');
}

@memoize()
Expand Down

0 comments on commit 4c33219

Please sign in to comment.