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.
36 lines
1.4 KiB
36 lines
1.4 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Squidex.Domain.Apps.Entities.Apps;
|
|
using Squidex.Domain.Apps.Entities.Rules;
|
|
using Squidex.Domain.Apps.Entities.Schemas;
|
|
using Squidex.Infrastructure.Security;
|
|
|
|
namespace Squidex.Domain.Apps.Entities
|
|
{
|
|
public interface IAppProvider
|
|
{
|
|
Task<(IAppEntity?, ISchemaEntity?)> GetAppWithSchemaAsync(Guid appId, Guid id, bool canCache = false);
|
|
|
|
Task<IAppEntity?> GetAppAsync(Guid appId, bool canCache = false);
|
|
|
|
Task<IAppEntity?> GetAppAsync(string appName, bool canCache = false);
|
|
|
|
Task<List<IAppEntity>> GetUserAppsAsync(string userId, PermissionSet permissions);
|
|
|
|
Task<ISchemaEntity?> GetSchemaAsync(Guid appId, Guid id, bool allowDeleted, bool canCache = false);
|
|
|
|
Task<ISchemaEntity?> GetSchemaAsync(Guid appId, string name, bool canCache = false);
|
|
|
|
Task<List<ISchemaEntity>> GetSchemasAsync(Guid appId);
|
|
|
|
Task<List<IRuleEntity>> GetRulesAsync(Guid appId);
|
|
}
|
|
}
|
|
|