aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs
blob: 9db8689a7808fc377cc74191108e0f65b9f4bf3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    {
    }
}