fix(auditlog): use correct values for AuditLogOptionsType (#1413)

This commit is contained in:
Earlopain 2023-07-29 03:38:16 +02:00 committed by GitHub
parent e39e715086
commit 393091b18c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1760,8 +1760,8 @@ type AuditLogOptionsType string
// Valid Types for AuditLogOptionsType
const (
AuditLogOptionsTypeMember AuditLogOptionsType = "member"
AuditLogOptionsTypeRole AuditLogOptionsType = "role"
AuditLogOptionsTypeRole AuditLogOptionsType = "0"
AuditLogOptionsTypeMember AuditLogOptionsType = "1"
)
// AuditLogAction is the Action of the AuditLog (see AuditLogAction* consts)