ensures the ui cultures are set in the back office. adds WebSecurity as a dependency for UmbracoContext.

This commit is contained in:
Shannon
2013-07-31 18:21:27 +10:00
parent 6f464567bb
commit dcf730a1bc
13 changed files with 148 additions and 28 deletions

View File

@@ -15,7 +15,7 @@ namespace Umbraco.Core.Security
}
[DataMember(Name = "id")]
public int Id { get; set; }
public object Id { get; set; }
[DataMember(Name = "roles")]
public string[] Roles { get; set; }
@@ -36,5 +36,8 @@ namespace Umbraco.Core.Security
[DataMember(Name = "allowedApps")]
public string[] AllowedApplications { get; set; }
[DataMember(Name = "culture")]
public string Culture { get; set; }
}
}