mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #4717] [CLOSED] Add Group visibility and Playback/Playlist Access Control to SyncPlay #10240
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/4717
Author: @OancaAndrei
Created: 12/7/2020
Status: ❌ Closed
Base:
master← Head:syncplay-playback-access-list📝 Commits (2)
499f3eeUpdate authorization policies for SyncPlay883dc23Add access list and visibility type to SyncPlay group📊 Changes
25 files changed (+1115 additions, -64 deletions)
View changed files
📝
Emby.Server.Implementations/SyncPlay/Group.cs(+148 -2)📝
Emby.Server.Implementations/SyncPlay/SyncPlayManager.cs(+110 -1)📝
Jellyfin.Api/Auth/SyncPlayAccessPolicy/SyncPlayAccessHandler.cs(+50 -3)📝
Jellyfin.Api/Auth/SyncPlayAccessPolicy/SyncPlayAccessRequirement.cs(+3 -11)📝
Jellyfin.Api/Constants/Policies.cs(+14 -4)📝
Jellyfin.Api/Controllers/SyncPlayController.cs(+69 -6)➖
Jellyfin.Api/Models/SyncPlayDtos/NewGroupRequestDto.cs(+0 -22)📝
Jellyfin.Data/Entities/User.cs(+2 -2)➕
Jellyfin.Data/Enums/SyncPlayAccessRequirementType.cs(+28 -0)📝
Jellyfin.Data/Enums/SyncPlayUserAccessType.cs(+2 -2)📝
Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs(+18 -4)➕
MediaBrowser.Controller/SyncPlay/GroupAccessList.cs(+199 -0)📝
MediaBrowser.Controller/SyncPlay/ISyncPlayManager.cs(+23 -0)➕
MediaBrowser.Controller/SyncPlay/Requests/ListUsersRequest.cs(+13 -0)📝
MediaBrowser.Controller/SyncPlay/Requests/NewGroupRequest.cs(+40 -1)➕
MediaBrowser.Controller/SyncPlay/Requests/UpdateGroupSettingsRequest.cs(+94 -0)📝
MediaBrowser.Model/SyncPlay/GroupInfoDto.cs(+70 -2)📝
MediaBrowser.Model/SyncPlay/GroupUpdateType.cs(+10 -0)➕
MediaBrowser.Model/SyncPlay/GroupVisibilityType.cs(+23 -0)➕
MediaBrowser.Model/SyncPlay/NewGroupRequestDto.cs(+50 -0)...and 5 more files
📄 Description
Changes
Add visibility property to SyncPlay groups:
Add Playback and Playlist Access Control that allows the Group creator to give/revoke auth on who's allowed to edit the playlist and/or control playback.
jellyfin-webPR here.jellyfin-apiclient-javascriptPR here.Depends on #4716.
Features being tackled in this PR
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.