Avoid spaces in user names

[TODO] fix identity config
This commit is contained in:
Paul Schneider 2019-07-21 17:35:41 +02:00
commit 3700590cb7
7 changed files with 33 additions and 18 deletions

View file

@ -7,11 +7,14 @@ namespace Yavsc.Attributes.Validation
public class YaRegularExpression : System.ComponentModel.DataAnnotations.RegularExpressionAttribute {
public YaRegularExpression(string pattern): base (pattern)
{
this.ErrorMessage = pattern;
this.ErrorMessage = "RegularExpression: "+ pattern;
}
public override string FormatErrorMessage(string name)
{
if (ErrorMessageResourceType==null || string.IsNullOrEmpty(ErrorMessageResourceName))
return ErrorMessage;
var prop = this.ErrorMessageResourceType.GetProperty(ErrorMessageResourceName);
return (string) prop.GetValue(null, BindingFlags.Static, null, null, System.Globalization.CultureInfo.CurrentUICulture);