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.
28 lines
1012 B
28 lines
1012 B
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using Squidex.Domain.Apps.Core.Apps;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Contents.GraphQL;
|
|
|
|
public static class TestApp
|
|
{
|
|
public static readonly NamedId<DomainId> DefaultId = NamedId.Of(DomainId.NewGuid(), "my-app");
|
|
|
|
public static readonly App Default =
|
|
new App
|
|
{
|
|
Id = DefaultId.Id,
|
|
Created = default,
|
|
CreatedBy = RefToken.User("42"),
|
|
Languages = LanguagesConfig.English.Set(Language.GermanGermany),
|
|
LastModified = default,
|
|
LastModifiedBy = RefToken.User("42"),
|
|
Name = DefaultId.Name,
|
|
};
|
|
}
|
|
|