mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
fixes #941 - Rework password recovery and remove IsLocal checks
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using MediaBrowser.Model.Drawing;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using ServiceStack;
|
||||
|
||||
namespace MediaBrowser.Api.Images
|
||||
@@ -54,7 +53,7 @@ namespace MediaBrowser.Api.Images
|
||||
public bool EnableImageEnhancers { get; set; }
|
||||
|
||||
[ApiMember(Name = "Format", Description = "Determines the output foramt of the image - original,gif,jpg,png", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
|
||||
public ImageOutputFormat Format { get; set; }
|
||||
public string Format { get; set; }
|
||||
|
||||
[ApiMember(Name = "AddPlayedIndicator", Description = "Optional. Add a played indicator", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
|
||||
public bool AddPlayedIndicator { get; set; }
|
||||
@@ -71,8 +70,6 @@ namespace MediaBrowser.Api.Images
|
||||
public ImageRequest()
|
||||
{
|
||||
EnableImageEnhancers = true;
|
||||
|
||||
Format = ImageOutputFormat.Original;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user