mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
16f0486da2
Closes #894
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using NzbDrone.Core.Configuration;
|
|
using Prowlarr.Http.REST;
|
|
|
|
namespace Prowlarr.Api.V1.Config
|
|
{
|
|
public class UiConfigResource : RestResource
|
|
{
|
|
//Calendar
|
|
public int FirstDayOfWeek { get; set; }
|
|
public string CalendarWeekColumnHeader { get; set; }
|
|
|
|
//Dates
|
|
public string ShortDateFormat { get; set; }
|
|
public string LongDateFormat { get; set; }
|
|
public string TimeFormat { get; set; }
|
|
public bool ShowRelativeDates { get; set; }
|
|
|
|
public bool EnableColorImpairedMode { get; set; }
|
|
public int UILanguage { get; set; }
|
|
}
|
|
|
|
public static class UiConfigResourceMapper
|
|
{
|
|
public static UiConfigResource ToResource(IConfigService model)
|
|
{
|
|
return new UiConfigResource
|
|
{
|
|
FirstDayOfWeek = model.FirstDayOfWeek,
|
|
CalendarWeekColumnHeader = model.CalendarWeekColumnHeader,
|
|
|
|
ShortDateFormat = model.ShortDateFormat,
|
|
LongDateFormat = model.LongDateFormat,
|
|
TimeFormat = model.TimeFormat,
|
|
ShowRelativeDates = model.ShowRelativeDates,
|
|
|
|
EnableColorImpairedMode = model.EnableColorImpairedMode,
|
|
UILanguage = model.UILanguage
|
|
};
|
|
}
|
|
}
|
|
}
|