Skip to content
Snippets Groups Projects
Commit 936fd2f0 authored by Lansana DIOMANDE's avatar Lansana DIOMANDE
Browse files

refactor(config): add config file for staging and prod env

parent b2c8b380
No related branches found
No related tags found
2 merge requests!14feat: added mounted, .bashrc, .zshrc, added tests, added keycloak tests,!8feat(extension): login, open in devcontainer, automaticly save code, open briefing, publish extension
export const KEYCLOAK_DEVICE_AUTH_URL =
'https://auth.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/auth/device';
export const KEYCLOAK_TOKEN_CREATE_URL = 'https://auth.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/token';
export const KEYCLOAK_USER_INFO_URL = 'https://auth.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/userinfo';
export const KEYCLOAK_DEVICE_AUTH_URL =
'https://auth.staging.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/auth/device';
export const KEYCLOAK_TOKEN_CREATE_URL =
'https://auth.staging.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/token';
export const KEYCLOAK_USER_INFO_URL =
'https://auth.staging.deadlock.io/auth/realms/Deadlock/protocol/openid-connect/userinfo';
...@@ -26,8 +26,6 @@ export function getUri(webview: Webview, extensionUri: Uri, pathList: string[]) ...@@ -26,8 +26,6 @@ export function getUri(webview: Webview, extensionUri: Uri, pathList: string[])
export abstract class WebviewBase implements Disposable { export abstract class WebviewBase implements Disposable {
protected disposable: Disposable; protected disposable: Disposable;
private _disposablePanel: Disposable | undefined; private _disposablePanel: Disposable | undefined;
// TODO: Verifier si nécessaire
protected _panel: WebviewPanel | undefined; protected _panel: WebviewPanel | undefined;
constructor(private id: string, private title: string, command: Command, private readonly _column?: ViewColumn) { constructor(private id: string, private title: string, command: Command, private readonly _column?: ViewColumn) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment