mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
support rename for login, user and a few other types (#22331)
* rename object * add comment * use URN property * vbump STS * revert loc string change * fix name check * pr comments
This commit is contained in:
@@ -7,8 +7,12 @@
|
||||
* The object types in object explorer's node context.
|
||||
*/
|
||||
export enum NodeType {
|
||||
Column = 'Column',
|
||||
Database = 'Database',
|
||||
Login = 'ServerLevelLogin',
|
||||
User = 'User'
|
||||
Table = 'Table',
|
||||
User = 'User',
|
||||
View = 'View'
|
||||
}
|
||||
|
||||
export const PublicServerRoleName = 'public';
|
||||
@@ -51,10 +55,11 @@ export const AlterLoginDocUrl = 'https://learn.microsoft.com/en-us/sql/t-sql/sta
|
||||
|
||||
export enum TelemetryActions {
|
||||
CreateObject = 'CreateObject',
|
||||
UpdateObject = 'UpdateObject',
|
||||
DeleteObject = 'DeleteObject',
|
||||
OpenNewObjectDialog = 'OpenNewObjectDialog',
|
||||
OpenPropertiesDialog = 'OpenPropertiesDialog'
|
||||
OpenPropertiesDialog = 'OpenPropertiesDialog',
|
||||
RenameObject = 'RenameObject',
|
||||
UpdateObject = 'UpdateObject'
|
||||
}
|
||||
|
||||
export enum TelemetryViews {
|
||||
|
||||
Reference in New Issue
Block a user