Skip to content

Commit

Permalink
1. node add more editable attributes
Browse files Browse the repository at this point in the history
2. add version history comparison window
3. other fixes or improvements
  • Loading branch information
jxnkwlp committed May 21, 2022
1 parent 1b8fb52 commit 9a08fd3
Show file tree
Hide file tree
Showing 45 changed files with 2,268 additions and 1,461 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
using System.Linq;
using System.Threading.Tasks;
using Elsa;
using Elsa.Activities.Http;
using Elsa.Activities.JavaScript;
using Elsa.Activities.UserTask.Extensions;
using Elsa.Builders;
using Elsa.Serialization.Converters;
using Hangfire;
using Hangfire.MemoryStorage;
using Microsoft.AspNetCore.Authentication.JwtBearer;
Expand Down Expand Up @@ -268,6 +266,8 @@ public override void ConfigureServices(ServiceConfigurationContext context)
Configure<MvcNewtonsoftJsonOptions>((options) =>
{
options.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver() { NamingStrategy = new CamelCaseNamingStrategy(false, true) };
options.SerializerSettings.Converters.Add(new VersionOptionsJsonConverter());
options.SerializerSettings.Converters.Add(new NewtonsoftJsonTypeJsonConverter());
});

Configure<AbpSystemTextJsonSerializerOptions>(options =>
Expand Down
Loading

0 comments on commit 9a08fd3

Please sign in to comment.