file_folderfamily_woman_woman_girl_boy Admin-configured folders shared by everyone in a group.
Go to file
Sascha Wiswedel 0e264bf795 cosmetics on admin page
- added headline for groupfolders admin page
- adjusted margins/paddings
2019-03-12 20:04:18 +01:00
.tx Fix tx config 2018-02-12 23:03:29 +01:00
appinfo Add group-folder-id property to propfind calls and implement group folder user/group search 2019-03-01 14:46:12 +01:00
img Add vue app for ACL management in files sidebar 2019-03-01 14:46:12 +01:00
js cosmetics on admin page 2019-03-12 20:04:18 +01:00
l10n [tx-robot] updated from transifex 2019-03-11 01:20:32 +00:00
lib ACL: properly delete rules on proppatch 2019-03-01 14:46:12 +01:00
screenshots update readme and screenshots 2017-06-28 16:28:32 +02:00
src Apply inherited permissions current directory permissions 2019-03-01 14:46:12 +01:00
templates cosmetics on admin page 2019-03-12 20:04:18 +01:00
tests cache wrapper tests 2019-03-01 14:43:47 +01:00
.babelrc mount group folders and wip ui 2017-04-13 17:45:49 +02:00
.gitignore 1.2.0 2018-01-23 14:03:59 +01:00
.php_cs.dist run php-cs-fixer 2017-08-15 16:56:32 +02:00
.scrutinizer.yml add scrutinizer config 2017-04-06 16:03:51 +02:00
.travis.yml Download proper phpunit version 2019-02-18 18:06:56 +01:00
CHANGELOG.md add changelog 2018-02-04 15:59:46 +01:00
Makefile 2.0.2 2018-12-16 16:22:45 +01:00
package-lock.json use react-select for group select dropdown 2019-03-08 17:04:11 +01:00
package.json use react-select for group select dropdown 2019-03-08 17:04:11 +01:00
postcss.config.js mount group folders and wip ui 2017-04-13 17:45:49 +02:00
README.md Removed unconfirmed information 2018-09-19 17:20:49 +02:00
tsconfig.json update dependencies 2018-09-03 22:25:45 +02:00
webpack.dev.config.js specify a unique jsonpFunction 2019-03-06 15:58:01 +01:00
webpack.prod.config.js bumb dependencies 2019-03-07 16:32:58 +01:00

Group folders

Admin configured folders shared by everyone in a group.

Configure folders

Folders can be configured from Group folders in the admin settings.

After a folder is created, the admin can give access to the folder to one or more groups and a quota can be assigned for the folder.

edit

Permissions to the content of a group folder can be configured on a per-group basis.

permissions

Folders

Once configured, the folders will show up in the home folder for each user in the configured groups.

folders

Notes

  • Currently using encryption on group folders is not supported, all files stored within a group folder will be stored unencrypted.
  • A new Group folder currently overwrites user folders with the same name. While this does not cause data loss, the users will see the new (empty!) Group folder and wont be able to access their old folder. When the Group folder gets removed, the old folder reappears. While we look into forcing group folders to be unique in an upcoming update, we recommend administrators to make sure the names are unique, for example by prefixing them in a certain way like GS_ and instructing users not to name their own top-level folders in a similar way.
  • Currently actions will not be recorded in Activity-Stream (worked on for NC 15)
  • Deleted files and folders do not appear in the deleted files section and can not be restored via the Interface (worked on for NC 15)
  • Folders will appear as external storage and may need to be addressed per client-basis for download

API

Group folders can be configured externally trough the OCS Api.

For all POST calls the required parameters are listed, for more information about how to use an OCS api see the Nextcloud documentation on the topic

The following OCS calls are supported.

  • GET apps/groupfolders/folders: Returns a list of call configured folders and their settings
  • POST apps/groupfolders/folders: Create a new group folder.
    • mountpoint: The name for the new folder.
  • GET apps/groupfolders/folders/$folderId: Return a specific configured folder and it's settings
  • DELETE apps/groupfolders/folders/$folderId: Delete a group folder.
  • POST apps/groupfolders/folders/$folderId/groups: Give a group access to a folder
    • group: The id of the group to be given access to the folder.
  • DELETE apps/groupfolders/folders/$folderId/groups/$groupId: Remove access from a group to a folder.
  • POST apps/groupfolders/folders/$folderId/groups/$groupId: Set the permissions a group has in a folder
  • POST apps/groupfolders/folders/$folderId/quota: Set the quota for a folder.
    • quota: The new quota for the folder in bytes, user -3 for unlimited.
  • POST apps/groupfolders/folders/$folderId/mountpoint: Change the name of a folder.
    • mountpoint: The new name for the folder.