Merge pull request #7775 from crobibero/openapi-version

(cherry picked from commit 4c0510ee6d)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
Cody Robibero 2022-05-21 08:59:24 -06:00 committed by crobibero
parent f205661b18
commit d078daad39
1 changed files with 6 additions and 0 deletions

View File

@ -440,6 +440,12 @@ namespace Jellyfin.Server.Extensions
.Cast<IOpenApiAny>()
.ToArray()
});
// Swashbuckle doesn't use JsonOptions to describe responses, so we need to manually describe it.
options.MapType<Version>(() => new OpenApiSchema
{
Type = "string"
});
}
}
}