* convert key to name before saving roles * Rework MemberEditingService to convert keys * Rename variable to groups * Extract to variable
13 lines
334 B
C#
13 lines
334 B
C#
namespace Umbraco.Cms.Core.Models.ContentEditing;
|
|
|
|
public abstract class MemberEditingModelBase : ContentEditingModelBase
|
|
{
|
|
public bool IsApproved { get; set; }
|
|
|
|
public IEnumerable<Guid>? Roles { get; set; }
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string Username { get; set; } = string.Empty;
|
|
}
|