diff --git a/admin_manual/configuration_files/file_sharing_configuration.rst b/admin_manual/configuration_files/file_sharing_configuration.rst index 9dfea23a8..a699a4166 100644 --- a/admin_manual/configuration_files/file_sharing_configuration.rst +++ b/admin_manual/configuration_files/file_sharing_configuration.rst @@ -73,6 +73,10 @@ Trashbin contents are not transferred:: (See :doc:`../configuration_server/occ_command` for a complete ``occ`` reference.) + +Users may also transfer files or folders selectively by themselves. +See `user documentation `_ for details. + Creating persistent file Shares ------------------------------- diff --git a/admin_manual/configuration_server/occ_command.rst b/admin_manual/configuration_server/occ_command.rst index 4e9eb0ec4..8e161c873 100644 --- a/admin_manual/configuration_server/occ_command.rst +++ b/admin_manual/configuration_server/occ_command.rst @@ -724,6 +724,9 @@ It is also possible to transfer only one directory along with it's contents. Thi sudo -u www-data php occ files:transfer-ownership --path="path_to_dir" +Users may also transfer files or folders selectively by themselves. +See `user documentation `_ for details. + .. _files_external_label: Files external diff --git a/user_manual/files/index.rst b/user_manual/files/index.rst index 87c98e143..4da7a0b5d 100644 --- a/user_manual/files/index.rst +++ b/user_manual/files/index.rst @@ -17,4 +17,5 @@ Files & synchronization quota version_control projects + transfer_ownership diff --git a/user_manual/files/transfer_ownership.rst b/user_manual/files/transfer_ownership.rst new file mode 100644 index 000000000..78ec64dc5 --- /dev/null +++ b/user_manual/files/transfer_ownership.rst @@ -0,0 +1,25 @@ +================== +Transfer Ownership +================== + +Users can transfer the ownership of files and folders to other users. Share +ownerships of those transfered files/folders will also be transferred. + +#. Navigate to *Settings* > *Personal* > *Sharing* > *Files* +#. Click on *Choose file or folder to transfer* >> A file picker opens, showing all files and folders in the user's account +#. Pick a file or folder and click on *Choose* >> The chosen file or folder name gets displayed +#. Click on *Change* to change the choice if necessary +#. Pick a new owner by typing their name into the search field next to *New owner* +#. Click on *Transfer* + + .. note:: The username autocompletion or listing may be limited due to administrative visibility configuration. + See `admin documentation `_ for details. + +#. The target user receives a notification where they are being asked whether to + accept or reject the incoming transfer. + + .. figure:: ../images/transfer_ownership-accept.png + +#. If accepted, the target user finds the transferred files and folders in their + root under a folder *Transferred from [user] on [timestamp]* +#. The source user gets informed about the acceptance or rejection by a notification diff --git a/user_manual/images/transfer_ownership-accept.png b/user_manual/images/transfer_ownership-accept.png new file mode 100644 index 000000000..39a04fff5 Binary files /dev/null and b/user_manual/images/transfer_ownership-accept.png differ