Browse Source

[fb] Changed file system name in permission_actions (#3679)

* [fb] Changed file system name in permission_actions

* test commit

* reveret previous commit

* [fb] Changes made for AWS description

---------

Co-authored-by: tarunjangid <tj@cloudera.com>
Tarun Jangid 1 year ago
parent
commit
612a83773b
1 changed files with 5 additions and 5 deletions
  1. 5 5
      apps/filebrowser/src/filebrowser/settings.py

+ 5 - 5
apps/filebrowser/src/filebrowser/settings.py

@@ -28,9 +28,9 @@ from desktop.conf import PERMISSION_ACTION_GS, PERMISSION_ACTION_OFS
 
 
 PERMISSION_ACTIONS = (
-  (PERMISSION_ACTION_S3, "Access to S3 from filebrowser and filepicker."),
-  (PERMISSION_ACTION_ADLS, "Access to ADLS from filebrowser and filepicker."),
-  (PERMISSION_ACTION_ABFS, "Access to ABFS from filebrowser and filepicker."),
-  (PERMISSION_ACTION_GS, "Access to GS from filebrowser and filepicker."),
-  (PERMISSION_ACTION_OFS, "Access to OFS from filebrowser and filepicker.")
+  (PERMISSION_ACTION_S3, "Access to Amazon Web Services (AWS) S3 from filebrowser and filepicker."),
+  (PERMISSION_ACTION_ADLS, "Access to Azure Data Lake Storage (ADLS) from filebrowser and filepicker."),
+  (PERMISSION_ACTION_ABFS, "Access to Azure Blob File System (ABFS) from filebrowser and filepicker."),
+  (PERMISSION_ACTION_GS, "Access to Google File System (GS) from filebrowser and filepicker."),
+  (PERMISSION_ACTION_OFS, "Access to Ozone File System (OFS) from filebrowser and filepicker.")
 )