Forum Discussion
sorrentinov
May 30, 2023Copper Contributor
Is there the possibility to set Stream (on Sharepoint) to download video only if owner?
I'm migrating video from Microsoft Stream (Classic) to Stream (on Sharepoint). Previously If I opened a video on Stream (Classic) I was unable to download the video if was not the video owner. Now ...
sorrentinov
Jun 05, 2023Copper Contributor
Thanks Lalit Mohan
I'm not able to configure Stream on SharePoint to allow only the owner to download videos.
The only way that I found to avoid the download link is to configure SharePoint site permission without "Open Items" to the SharePoint member group:
This bring two problems:
- Anyone in member group add a document in the library is not able to download it, so I've to assign them to the SharePoint owner group
- Anyone in the SharePoint owner group can download the document, not only the owner
Jun 05, 2023
First of this is NOT recommended, managing this will be a headace deluxe:
You don't need a custom group, you need to break the permission of the file. This means that it won't inherite the permissions of the site.
So you need a flow on a specific library which triggers on every new file uploaded, it should do this:
1. Break the permission of the file
2. Remove the groups
3. Add the owner of the file as owner.
4. Add the rest of the users as read only
Try building that and if you get stuck I'll help you out 🙂
You don't need a custom group, you need to break the permission of the file. This means that it won't inherite the permissions of the site.
So you need a flow on a specific library which triggers on every new file uploaded, it should do this:
1. Break the permission of the file
2. Remove the groups
3. Add the owner of the file as owner.
4. Add the rest of the users as read only
Try building that and if you get stuck I'll help you out 🙂