mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 09:35:41 -05:00
add sql password validation (#6715)
* add sql password validation * refactor the code * correct the user name for bdc, it is also sa * comments
This commit is contained in:
@@ -62,12 +62,14 @@ export interface DialogFieldInfo {
|
||||
required: boolean;
|
||||
options: string[];
|
||||
placeHolder: string;
|
||||
userName?: string; //needed for sql server's password complexity requirement check, password can not include the login name.
|
||||
}
|
||||
|
||||
export enum FieldType {
|
||||
Text = 'text',
|
||||
Number = 'number',
|
||||
DateTimeText = 'datetime_text',
|
||||
SQLPassword = 'sql_password',
|
||||
Password = 'password',
|
||||
Options = 'options'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user