(cherry picked from commit 5e57ffbcf9ac3a346d4bf2b692248393215bad89)pull/1739/head
parent
ded45a53f3
commit
45e9d14916
@ -0,0 +1,23 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace Readarr.Http
|
||||||
|
{
|
||||||
|
public class ApiInfoController : Controller
|
||||||
|
{
|
||||||
|
public ApiInfoController()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("/api")]
|
||||||
|
[Produces("application/json")]
|
||||||
|
public ApiInfoResource GetApiInfo()
|
||||||
|
{
|
||||||
|
return new ApiInfoResource
|
||||||
|
{
|
||||||
|
Current = "v1",
|
||||||
|
Deprecated = new List<string>()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Readarr.Http
|
||||||
|
{
|
||||||
|
public class ApiInfoResource
|
||||||
|
{
|
||||||
|
public string Current { get; set; }
|
||||||
|
public List<string> Deprecated { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue