Auto detect first day of week for calendar

New: Calendar will use systems first day of week when displaying
This commit is contained in:
Mark McDowall
2013-10-02 12:41:21 -07:00
parent 76089b460c
commit fe5b42696d
5 changed files with 36 additions and 1 deletions
+2 -1
View File
@@ -42,7 +42,8 @@ namespace NzbDrone.Api.System
IsLinux = OsInfo.IsLinux,
IsWindows = OsInfo.IsWindows,
Branch = _configFileProvider.Branch,
Authentication = _configFileProvider.AuthenticationEnabled
Authentication = _configFileProvider.AuthenticationEnabled,
StartOfWeek = (int)OsInfo.FirstDayOfWeek
}.AsResponse();
}