mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
enable AAD auth for table designer (#18248)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
||||||
"version": "3.0.0-release.195",
|
"version": "3.0.0-release.198",
|
||||||
"downloadFileNames": {
|
"downloadFileNames": {
|
||||||
"Windows_86": "win-x86-net6.0.zip",
|
"Windows_86": "win-x86-net6.0.zip",
|
||||||
"Windows_64": "win-x64-net6.0.zip",
|
"Windows_64": "win-x64-net6.0.zip",
|
||||||
|
|||||||
@@ -19,7 +19,8 @@ export function registerTableDesignerCommands(appContext: AppContext) {
|
|||||||
database: context.connectionProfile.databaseName,
|
database: context.connectionProfile.databaseName,
|
||||||
isNewTable: true,
|
isNewTable: true,
|
||||||
id: generateUuid(),
|
id: generateUuid(),
|
||||||
connectionString: connectionString
|
connectionString: connectionString,
|
||||||
|
accessToken: context.connectionProfile.options.azureAccountToken
|
||||||
}, telemetryInfo);
|
}, telemetryInfo);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
@@ -37,7 +38,8 @@ export function registerTableDesignerCommands(appContext: AppContext) {
|
|||||||
name: name,
|
name: name,
|
||||||
schema: schema,
|
schema: schema,
|
||||||
id: `${sqlProviderName}|${server}|${database}|${schema}|${name}`,
|
id: `${sqlProviderName}|${server}|${database}|${schema}|${name}`,
|
||||||
connectionString: connectionString
|
connectionString: connectionString,
|
||||||
|
accessToken: context.connectionProfile.options.azureAccountToken
|
||||||
}, telemetryInfo);
|
}, telemetryInfo);
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user