Skip to content

Commit 12d9b41

Browse files
Scott DoverScott Dover
authored andcommitted
fix: rename ROOT to SYSTEM
Signed-off-by: Scott Dover <Scott.Dover@sas.com>
1 parent e56b286 commit 12d9b41

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

client/src/components/profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export interface BaseProfile {
129129

130130
export interface ProfileWithFileRootOptions {
131131
fileNavigationCustomRootPath?: string;
132-
fileNavigationRoot?: "CUSTOM" | "ROOT" | "USER";
132+
fileNavigationRoot?: "CUSTOM" | "SYSTEM" | "USER";
133133
}
134134

135135
export const toAutoExecLines = (autoExec: AutoExec[]): string[] => {

client/src/connection/itc/script.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ class SASRunner{
527527
if ($fileNavigationRoot -eq "USER") {
528528
$mode = [SAS.FileServiceListFilesMode]::FileServiceListFilesModeUser
529529
}
530-
if ($fileNavigationRoot -eq "ROOT") {
530+
if ($fileNavigationRoot -eq "SYSTEM") {
531531
$mode = [SAS.FileServiceListFilesMode]::FileServiceListFilesModePath
532532
}
533533
if ($fileNavigationRoot -eq "CUSTOM") {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@
299299
"enum": [
300300
"CUSTOM",
301301
"USER",
302-
"ROOT"
302+
"SYSTEM"
303303
]
304304
}
305305
}
@@ -400,7 +400,7 @@
400400
"enum": [
401401
"CUSTOM",
402402
"USER",
403-
"ROOT"
403+
"SYSTEM"
404404
]
405405
}
406406
}
@@ -441,7 +441,7 @@
441441
"enum": [
442442
"CUSTOM",
443443
"USER",
444-
"ROOT"
444+
"SYSTEM"
445445
]
446446
}
447447
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"configuration.SAS.connectionProfiles.profiles.context": "SAS Viya Context",
4747
"configuration.SAS.connectionProfiles.profiles.endpoint": "SAS Viya Connection Profile Endpoint",
4848
"configuration.SAS.connectionProfiles.profiles.fileNavigationCustomRootPath": "File navigation custom root path",
49-
"configuration.SAS.connectionProfiles.profiles.fileNavigationRoot": "File navigation root. Can be USER (default), CUSTOM, or ROOT",
49+
"configuration.SAS.connectionProfiles.profiles.fileNavigationRoot": "File navigation root. Can be USER (default), CUSTOM, or SYSTEM",
5050
"configuration.SAS.connectionProfiles.profiles.iom.host": "SAS IOM Connection Host",
5151
"configuration.SAS.connectionProfiles.profiles.iom.interopLibraryFolderPath": "SAS IOM interop library path",
5252
"configuration.SAS.connectionProfiles.profiles.iom.port": "SAS IOM Connection port",

0 commit comments

Comments
 (0)