Browse Source

Add missing audit log action types

pull/1923/head
quin lynch 3 years ago
parent
commit
2070733424
1 changed files with 38 additions and 0 deletions
  1. +38
    -0
      src/Discord.Net.Core/Entities/AuditLogs/ActionType.cs

+ 38
- 0
src/Discord.Net.Core/Entities/AuditLogs/ActionType.cs View File

@@ -142,5 +142,43 @@ namespace Discord
/// A message was unpinned from this guild.
/// </summary>
MessageUnpinned = 75,

/// <summary>
/// A integration was created
/// </summary>
IntegrationCreated = 80,
/// <summary>
/// A integration was updated
/// </summary>
IntegrationUpdated = 81,
/// <summary>
/// An integration was deleted
/// </summary>
IntegrationDeleted = 82,
/// <summary>
/// A stage instance was created.
/// </summary>
StageInstanceCreated = 83,
/// <summary>
/// A stage instance was updated.
/// </summary>
StageInstanceUpdated = 84,
/// <summary>
/// A stage instance was deleted.
/// </summary>
StageInstanceDeleted = 85,

/// <summary>
/// A sticker was created.
/// </summary>
StickerCreated = 90,
/// <summary>
/// A sticker was updated.
/// </summary>
StickerUpdated = 91,
/// <summary>
/// A sticker was deleted.
/// </summary>
StickerDeleted = 92,
}
}

Loading…
Cancel
Save