1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 02:48:51 +00:00

add invisible permission for folder permission (#5538)

This commit is contained in:
lian
2023-07-10 15:48:34 +08:00
committed by GitHub
parent 8e22450237
commit c32ce41ce3
7 changed files with 44 additions and 12 deletions

View File

@@ -664,6 +664,9 @@ export const Utils = {
case 'preview':
title = gettext('Online Read-Only');
break;
case 'invisible':
title = gettext('Invisible');
break;
}
return title;
},
@@ -686,6 +689,9 @@ export const Utils = {
case 'preview':
title = gettext('User can only view files online via browser. Files can\'t be downloaded.');
break;
case 'invisible':
title = gettext('User can not see this folder.');
break;
}
return title;
},