diff --git a/src/InterfaceForward.Api/InterfaceForwardApiModule.cs b/src/InterfaceForward.Api/InterfaceForwardApiModule.cs index 2dd50b3..bd459d0 100644 --- a/src/InterfaceForward.Api/InterfaceForwardApiModule.cs +++ b/src/InterfaceForward.Api/InterfaceForwardApiModule.cs @@ -124,6 +124,6 @@ public class InterfaceForwardApiModule : FakeModule app.MapControllers(); - app.Services.GetRequiredService().Send("Application started"); + app.Services.GetRequiredService().Send("Application started" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); } } \ No newline at end of file diff --git a/src/InterfaceForward.Application/InterfaceForwardApplicationModule.cs b/src/InterfaceForward.Application/InterfaceForwardApplicationModule.cs index a6b774d..0c2d400 100644 --- a/src/InterfaceForward.Application/InterfaceForwardApplicationModule.cs +++ b/src/InterfaceForward.Application/InterfaceForwardApplicationModule.cs @@ -68,7 +68,7 @@ public class InterfaceForwardApplicationModule:FakeModule obj.FormFieldList.Add(new InterfaceForward.Domain.Shared.Dtos.InterfaceFormFieldDto { Name = "_natasha_health", - Value = obj.GetAccountFieldValueOrNull("_missing") ?? "ok" + Value = "ok" }); """)(context);