Skip to content

Commit

Permalink
Mongo db can't write to read only properties (elsa-workflows#3150)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmcgillivray authored Jun 23, 2022
1 parent 2583e8d commit 5d47c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Elsa.Abstractions/Models/ActivityDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public class ActivityDefinition
public bool LoadWorkflowContext { get; set; }
public bool SaveWorkflowContext { get; set; }
public ICollection<ActivityDefinitionProperty> Properties { get; set; } = new List<ActivityDefinitionProperty>();
public IDictionary<string, string> PropertyStorageProviders { get; } = new Dictionary<string, string>();
public IDictionary<string, string> PropertyStorageProviders { get; set; } = new Dictionary<string, string>();
}
}

0 comments on commit 5d47c00

Please sign in to comment.