audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System.Globalization;
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
@@ -69,7 +70,7 @@ public sealed partial class SimpleTemplateRenderer : INotifyTemplateRenderer
|
||||
["eventId"] = notifyEvent.EventId.ToString(),
|
||||
["kind"] = notifyEvent.Kind,
|
||||
["tenant"] = notifyEvent.Tenant,
|
||||
["timestamp"] = notifyEvent.Ts.ToString("O"),
|
||||
["timestamp"] = notifyEvent.Ts.ToString("O", CultureInfo.InvariantCulture),
|
||||
["actor"] = notifyEvent.Actor,
|
||||
["version"] = notifyEvent.Version,
|
||||
};
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using System.Globalization;
|
||||
using System.Net;
|
||||
using System.Net.Http.Json;
|
||||
using System.Text;
|
||||
@@ -179,7 +180,7 @@ public sealed class WebhookChannelDispatcher : INotifyChannelDispatcher
|
||||
subject = content.Subject,
|
||||
bodyHash = content.BodyHash,
|
||||
format = content.Format.ToString(),
|
||||
timestamp = DateTimeOffset.UtcNow.ToString("O")
|
||||
timestamp = DateTimeOffset.UtcNow.ToString("O", CultureInfo.InvariantCulture)
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user