mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Newtonsoft.Json;
|
|
using Squidex.Infrastructure.Collections;
|
|
using Squidex.Infrastructure.Reflection;
|
|
|
|
namespace Squidex.Domain.Apps.Core.Contents.Json
|
|
{
|
|
public class JsonWorkflowTransition
|
|
{
|
|
[JsonProperty]
|
|
public string Expression { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string Role { get; set; }
|
|
|
|
[JsonProperty]
|
|
public List<string> Roles { get; }
|
|
|
|
public JsonWorkflowTransition()
|
|
{
|
|
}
|
|
|
|
public JsonWorkflowTransition(WorkflowTransition client)
|
|
{
|
|
SimpleMapper.Map(client, this);
|
|
}
|
|
|
|
public WorkflowTransition ToTransition()
|
|
{
|
|
var rolesList = Roles;
|
|
|
|
if (!string.IsNullOrEmpty(Role))
|
|
{
|
|
rolesList = new List<string> { Role };
|
|
}
|
|
|
|
ReadOnlyCollection<string> roles = null;
|
|
|
|
if (rolesList != null && rolesList.Count > 0)
|
|
{
|
|
roles = ReadOnlyCollection.Create(rolesList.ToArray());
|
|
}
|
|
|
|
return new WorkflowTransition(Expression, roles);
|
|
}
|
|
}
|
|
}
|
|
|