Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialize tenantId in specification constructors. #3657

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq.Expressions;
using Elsa.Models;
using LinqKit;
Expand All @@ -11,6 +11,7 @@ public WorkflowDefinitionIdSpecification(string id, VersionOptions? versionOptio
{
Id = id;
VersionOptions = versionOptions;
TenantId = tenantId;
}

public string Id { get; set; }
Expand Down
Expand Up @@ -11,6 +11,7 @@ public WorkflowDefinitionTagSpecification(string tag, VersionOptions? versionOpt
{
Tag = tag;
VersionOptions = versionOptions;
TenantId = tenantId;
}

public string Tag { get; set; }
Expand Down