You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
390 B
15 lines
390 B
using Jellyfin.Api;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Jellyfin.Server.Integration.Tests.Controllers
|
|
{
|
|
/// <summary>
|
|
/// Base controller for testing infrastructure.
|
|
/// Automatically ignored in generated openapi spec.
|
|
/// </summary>
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public class BaseJellyfinTestController : BaseJellyfinApiController
|
|
{
|
|
}
|
|
}
|