Merge pull request #6556 from nielsvanvelzen/openapi-security-scheme

Use standard Authorization header in OpenAPI specification
This commit is contained in:
Claus Vium 2021-09-16 08:14:58 +02:00 committed by GitHub
commit 9d46b3695f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ namespace Jellyfin.Server.Extensions
{
Type = SecuritySchemeType.ApiKey,
In = ParameterLocation.Header,
Name = "X-Emby-Authorization",
Name = "Authorization",
Description = "API key header parameter"
});