[PR #3371] [CLOSED] Add Dto Extensions #9486

Closed
opened 2026-02-07 06:02:57 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/3371
Author: @crobibero
Created: 6/18/2020
Status: Closed

Base: api-migrationHead: api-dto


📝 Commits (3)

  • 90c4964 Add Dto Extensions
  • 8a33924 Remove nullable
  • 4203ee3 Merge remote-tracking branch 'upstream/api-migration' into api-dto

📊 Changes

33 files changed (+1107 additions, -171 deletions)

View changed files

📝 Emby.Server.Implementations/HttpServer/Security/AuthService.cs (+25 -20)
📝 Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs (+78 -37)
Jellyfin.Api/Auth/BaseAuthorizationHandler.cs (+102 -0)
📝 Jellyfin.Api/Auth/CustomAuthenticationHandler.cs (+14 -11)
Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationHandler.cs (+42 -0)
Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationRequirement.cs (+11 -0)
📝 Jellyfin.Api/Auth/FirstTimeSetupOrElevatedPolicy/FirstTimeSetupOrElevatedHandler.cs (+18 -4)
Jellyfin.Api/Auth/IgnoreSchedulePolicy/IgnoreScheduleHandler.cs (+42 -0)
Jellyfin.Api/Auth/IgnoreSchedulePolicy/IgnoreScheduleRequirement.cs (+11 -0)
Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessHandler.cs (+44 -0)
Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessRequirement.cs (+11 -0)
📝 Jellyfin.Api/Auth/RequiresElevationPolicy/RequiresElevationHandler.cs (+24 -2)
Jellyfin.Api/Constants/InternalClaimTypes.cs (+38 -0)
📝 Jellyfin.Api/Constants/Policies.cs (+15 -0)
📝 Jellyfin.Api/Controllers/ConfigurationController.cs (+1 -1)
📝 Jellyfin.Api/Controllers/DevicesController.cs (+1 -1)
📝 Jellyfin.Api/Controllers/PackageController.cs (+1 -1)
📝 Jellyfin.Api/Controllers/SearchController.cs (+2 -1)
📝 Jellyfin.Api/Controllers/SubtitleController.cs (+4 -4)
📝 Jellyfin.Api/Controllers/VideoAttachmentsController.cs (+2 -1)

...and 13 more files

📄 Description

Migrated from 522e44de59/MediaBrowser.Api/BaseApiService.cs (L121)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/3371 **Author:** [@crobibero](https://github.com/crobibero) **Created:** 6/18/2020 **Status:** ❌ Closed **Base:** `api-migration` ← **Head:** `api-dto` --- ### 📝 Commits (3) - [`90c4964`](https://github.com/jellyfin/jellyfin/commit/90c4964169e6ac85c2d4502f9e802e972cb2060a) Add Dto Extensions - [`8a33924`](https://github.com/jellyfin/jellyfin/commit/8a33924b57571f141bfb5a4cd6b03ce377e49776) Remove nullable - [`4203ee3`](https://github.com/jellyfin/jellyfin/commit/4203ee31b212c0d91f5779765ce654261ffac729) Merge remote-tracking branch 'upstream/api-migration' into api-dto ### 📊 Changes **33 files changed** (+1107 additions, -171 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Server.Implementations/HttpServer/Security/AuthService.cs` (+25 -20) 📝 `Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs` (+78 -37) ➕ `Jellyfin.Api/Auth/BaseAuthorizationHandler.cs` (+102 -0) 📝 `Jellyfin.Api/Auth/CustomAuthenticationHandler.cs` (+14 -11) ➕ `Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationHandler.cs` (+42 -0) ➕ `Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationRequirement.cs` (+11 -0) 📝 `Jellyfin.Api/Auth/FirstTimeSetupOrElevatedPolicy/FirstTimeSetupOrElevatedHandler.cs` (+18 -4) ➕ `Jellyfin.Api/Auth/IgnoreSchedulePolicy/IgnoreScheduleHandler.cs` (+42 -0) ➕ `Jellyfin.Api/Auth/IgnoreSchedulePolicy/IgnoreScheduleRequirement.cs` (+11 -0) ➕ `Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessHandler.cs` (+44 -0) ➕ `Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessRequirement.cs` (+11 -0) 📝 `Jellyfin.Api/Auth/RequiresElevationPolicy/RequiresElevationHandler.cs` (+24 -2) ➕ `Jellyfin.Api/Constants/InternalClaimTypes.cs` (+38 -0) 📝 `Jellyfin.Api/Constants/Policies.cs` (+15 -0) 📝 `Jellyfin.Api/Controllers/ConfigurationController.cs` (+1 -1) 📝 `Jellyfin.Api/Controllers/DevicesController.cs` (+1 -1) 📝 `Jellyfin.Api/Controllers/PackageController.cs` (+1 -1) 📝 `Jellyfin.Api/Controllers/SearchController.cs` (+2 -1) 📝 `Jellyfin.Api/Controllers/SubtitleController.cs` (+4 -4) 📝 `Jellyfin.Api/Controllers/VideoAttachmentsController.cs` (+2 -1) _...and 13 more files_ </details> ### 📄 Description Migrated from https://github.com/jellyfin/jellyfin/blob/522e44de59a8661a859f6a373e495a9e0e8d13ff/MediaBrowser.Api/BaseApiService.cs#L121 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:02:57 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#9486