Skip to content
Snippets Groups Projects
Commit 98b809cc authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Resolved merge errors

parent f46c462e
No related branches found
No related tags found
1 merge request!9.NET-SDK: SET-Empfang inkl. Signaturprüfung - Ticket 562
......@@ -84,13 +84,13 @@ public class SecurityEventToken {
if (eventsClaim.Value.Contains(
ForwardSubmissionSchema))
return EventType.Forward;
if (eventsClaim.Value.Contains(Reject)) {
if (eventsClaim.Value.Contains(
RejectSubmissionSchema)) {
Problems = GetProblems(events?.Values?.FirstOrDefault()?.ToString() ?? "");
return EventType.Reject;
}
if (eventsClaim.Value.Contains(Accept)) return EventType.Accept;
if (eventsClaim.Value.Contains(AcceptSubmissionSchema))
return EventType.Accept;
......
using FitConnect.Services.Interfaces;
using Jose;
using Microsoft.Extensions.Logging;
using Microsoft.IdentityModel.Tokens;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment