use existing code for user authentication

This commit is contained in:
Harpal, Sailinder 2025-01-14 15:43:41 +01:00
parent 1e80995c7d
commit acd05b771d
No known key found for this signature in database
GPG Key ID: 9E8B70449A22F7D6
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func (c *Client) CreateFailedLoginAuditEntry(ss *sessions.SessionState, appURL s
func (c *Client) CreateSuccessfulLogoutAuditEntry(ss *sessions.SessionState, appURL string, tenantID string) {
coding := Coding{
System: "http://hl7.org/fhir/ValueSet/audit-event-type", Version: "1", Code: "110123", Display: "Logout", UserSelected: "All Sessions"}
System: "http://hl7.org/fhir/ValueSet/audit-event-type", Version: "1", Code: "110114", Display: "Logout", UserSelected: "All Sessions"}
c.createAuditEntry(ss, appURL, tenantID, "0", "Success", &coding)
}