@ -39,7 +39,7 @@ namespace Jellyfin.Api.Controllers
/// <returns>Whether Quick Connect is enabled on the server or not.</returns>
/// <returns>Whether Quick Connect is enabled on the server or not.</returns>
[HttpGet("Enabled")]
[HttpGet("Enabled")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status200OK)]
public ActionResult < bool > Get Enabled( )
public ActionResult < bool > Get QuickConnect Enabled( )
{
{
return _quickConnect . IsEnabled ;
return _quickConnect . IsEnabled ;
}
}
@ -52,7 +52,7 @@ namespace Jellyfin.Api.Controllers
/// <returns>A <see cref="QuickConnectResult"/> with a secret and code for future use or an error message.</returns>
/// <returns>A <see cref="QuickConnectResult"/> with a secret and code for future use or an error message.</returns>
[HttpGet("Initiate")]
[HttpGet("Initiate")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task < ActionResult < QuickConnectResult > > Initiate ( )
public async Task < ActionResult < QuickConnectResult > > Initiate QuickConnect ( )
{
{
try
try
{
{
@ -75,7 +75,7 @@ namespace Jellyfin.Api.Controllers
[HttpGet("Connect")]
[HttpGet("Connect")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
public ActionResult < QuickConnectResult > Connect( [ FromQuery , Required ] string secret )
public ActionResult < QuickConnectResult > GetQuick ConnectState ( [ FromQuery , Required ] string secret )
{
{
try
try
{
{
@ -102,7 +102,7 @@ namespace Jellyfin.Api.Controllers
[Authorize(Policy = Policies.DefaultAuthorization)]
[Authorize(Policy = Policies.DefaultAuthorization)]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
public async Task < ActionResult < bool > > Authorize ( [ FromQuery , Required ] string code )
public async Task < ActionResult < bool > > Authorize QuickConnect ( [ FromQuery , Required ] string code )
{
{
var userId = ClaimHelpers . GetUserId ( Request . HttpContext . User ) ;
var userId = ClaimHelpers . GetUserId ( Request . HttpContext . User ) ;
if ( ! userId . HasValue )
if ( ! userId . HasValue )