From 97f74b01b99ec7fa68b8ccb12aec77c6f3edc3ac Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Tue, 18 Jun 2019 15:19:35 +0200 Subject: [PATCH] Added missing method to workflow. --- src/Squidex.Domain.Apps.Entities/Contents/IContentWorkflow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Squidex.Domain.Apps.Entities/Contents/IContentWorkflow.cs b/src/Squidex.Domain.Apps.Entities/Contents/IContentWorkflow.cs index 06738ec71..e2b21d0af 100644 --- a/src/Squidex.Domain.Apps.Entities/Contents/IContentWorkflow.cs +++ b/src/Squidex.Domain.Apps.Entities/Contents/IContentWorkflow.cs @@ -17,6 +17,8 @@ namespace Squidex.Domain.Apps.Entities.Contents Task IsValidNextStatus(IContentEntity content, Status2 next); + Task CanUpdateAsync(IContentEntity content); + Task GetNextsAsync(IContentEntity content); Task GetAllAsync(ISchemaEntity schema);