removed User uicolor not supporting it in schedule and that was the only place it was used

This commit is contained in:
2021-10-06 22:24:29 +00:00
parent 6dd0fcec15
commit e12d506e90
5 changed files with 17 additions and 13 deletions

View File

@@ -25,8 +25,11 @@ namespace AyaNova.Models
Hexadecimal notation: #RGB[A]
R (red), G (green), B (blue), and A (alpha) are hexadecimal characters (09, AF). A is optional. The three-digit notation (#RGB) is a shorter version of the six-digit form (#RRGGBB). For example, #f09 is the same color as #ff0099. Likewise, the four-digit RGB notation (#RGBA) is a shorter version of the eight-digit form (#RRGGBBAA). For example, #0f38 is the same color as #00ff3388.
*/
[MaxLength(12)]
public string UiColor { get; set; }
//removed for v8 alpha due to schedule not really supporting colors and
//it's kind of tacky in my opinion and outdated and it would detract from the use of colors already in teh schedule
//plus no where else does ayanova use this value so it's a lot of nothing
// [MaxLength(12)]
// public string UiColor { get; set; }
//browser forced overrides
public string LanguageOverride { get; set; }
@@ -49,7 +52,7 @@ namespace AyaNova.Models
{
CurrencyName = "USD";
Hour12 = true;
UiColor = "#000000";//black is the default
// UiColor = "#000000";//black is the default
}
}