mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 09:35:38 -05:00
Add prompt for autorest SQL project name (#17365)
* Adding prompt for project name * Updating test * PR feedback * Fixing rename logic so that folder is also named according to project * Updating autorest test to confirm rename
This commit is contained in:
@@ -544,8 +544,8 @@ export function validateSqlServerPortNumber(port: string | undefined): boolean {
|
||||
return !isNaN(valueAsNum) && valueAsNum > 0 && valueAsNum < 65535;
|
||||
}
|
||||
|
||||
export function isEmptyString(password: string | undefined): boolean {
|
||||
return password === undefined || password === '';
|
||||
export function isEmptyString(input: string | undefined): boolean {
|
||||
return input === undefined || input === '';
|
||||
}
|
||||
|
||||
export function isValidSQLPassword(password: string, userName: string = 'sa'): boolean {
|
||||
|
||||
Reference in New Issue
Block a user