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.
46 lines
1.5 KiB
46 lines
1.5 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using Squidex.Domain.Apps.Core.Schemas;
|
|
using Squidex.Infrastructure.Collections;
|
|
using Squidex.Infrastructure.Commands;
|
|
using SchemaField = Squidex.Domain.Apps.Entities.Schemas.Commands.UpsertSchemaField;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Schemas.Commands
|
|
{
|
|
public sealed class SynchronizeSchema : SchemaUpdateCommand, IUpsertCommand, IAggregateCommand, ISchemaCommand
|
|
{
|
|
public bool NoFieldDeletion { get; set; }
|
|
|
|
public bool NoFieldRecreation { get; set; }
|
|
|
|
public bool IsPublished { get; set; }
|
|
|
|
public string Category { get; set; }
|
|
|
|
public SchemaField[]? Fields { get; set; }
|
|
|
|
public FieldNames? FieldsInReferences { get; set; }
|
|
|
|
public FieldNames? FieldsInLists { get; set; }
|
|
|
|
public FieldRuleCommand[]? FieldRules { get; set; }
|
|
|
|
public SchemaScripts? Scripts { get; set; }
|
|
|
|
public SchemaProperties Properties { get; set; }
|
|
|
|
public ReadonlyDictionary<string, string>? PreviewUrls { get; set; }
|
|
|
|
public Schema BuildSchema(string name, SchemaType type)
|
|
{
|
|
IUpsertCommand self = this;
|
|
|
|
return self.ToSchema(name, type);
|
|
}
|
|
}
|
|
}
|
|
|